| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean? |
|
No | - |
| isPublic | Boolean? |
|
No | - |
| isDeleted | Int? |
|
No | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| address | Json? |
|
No | - |
| emailITAdmin | String |
|
Yes | |
| webSite | String? |
|
No | - |
| OrgEmails | OrgEmail[] |
|
Yes | - |
| OrgDomains | OrgDomain[] |
|
Yes | - |
| mainOrg | Organization? |
|
No | - |
| mainOrgId | String? |
|
No | - |
| OrgEntity | Organization[] |
|
Yes | - |
| Members | User[] |
|
Yes | - |
| Posts | Post[] |
|
Yes | - |
| Groups | Group[] |
|
Yes | - |
| Files | File[] |
|
Yes | - |
| Tasks | Task[] |
|
Yes | - |
| Todos | Todo[] |
|
Yes | - |
Find zero or one Organization
// Get one Organization
const organization = await prisma.organization.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
Find first Organization
// Get one Organization
const organization = await prisma.organization.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
| orderBy | OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput | No |
| cursor | OrganizationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrganizationScalarFieldEnum | OrganizationScalarFieldEnum[] | No |
Find zero or more Organization
// Get all Organization
const Organization = await prisma.organization.findMany()
// Get first 10 Organization
const Organization = await prisma.organization.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
| orderBy | OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput | No |
| cursor | OrganizationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrganizationScalarFieldEnum | OrganizationScalarFieldEnum[] | No |
Create one Organization
// Create one Organization
const Organization = await prisma.organization.create({
data: {
// ... data to create a Organization
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationCreateInput | OrganizationUncheckedCreateInput | Yes |
Delete one Organization
// Delete one Organization
const Organization = await prisma.organization.delete({
where: {
// ... filter to delete one Organization
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
Update one Organization
// Update one Organization
const organization = await prisma.organization.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationUpdateInput | OrganizationUncheckedUpdateInput | Yes |
| where | OrganizationWhereUniqueInput | Yes |
Delete zero or more Organization
// Delete a few Organization
const { count } = await prisma.organization.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
Update zero or one Organization
const { count } = await prisma.organization.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyInput | Yes |
| where | OrganizationWhereInput | No |
Create or update one Organization
// Update or create a Organization
const organization = await prisma.organization.upsert({
create: {
// ... data to create a Organization
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Organization we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
| create | OrganizationCreateInput | OrganizationUncheckedCreateInput | Yes |
| update | OrganizationUpdateInput | OrganizationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| String |
|
Yes | ||
| description | String? |
|
No | - |
| org | Organization? |
|
No | - |
| orgId | String |
|
Yes | - |
| OrgEmailUseTos | OrgEmailUseTo[] |
|
Yes | - |
Find zero or one OrgEmail
// Get one OrgEmail
const orgEmail = await prisma.orgEmail.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailWhereUniqueInput | Yes |
Find first OrgEmail
// Get one OrgEmail
const orgEmail = await prisma.orgEmail.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailWhereInput | No |
| orderBy | OrgEmailOrderByWithRelationInput[] | OrgEmailOrderByWithRelationInput | No |
| cursor | OrgEmailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrgEmailScalarFieldEnum | OrgEmailScalarFieldEnum[] | No |
Find zero or more OrgEmail
// Get all OrgEmail
const OrgEmail = await prisma.orgEmail.findMany()
// Get first 10 OrgEmail
const OrgEmail = await prisma.orgEmail.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrgEmailWhereInput | No |
| orderBy | OrgEmailOrderByWithRelationInput[] | OrgEmailOrderByWithRelationInput | No |
| cursor | OrgEmailWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrgEmailScalarFieldEnum | OrgEmailScalarFieldEnum[] | No |
Create one OrgEmail
// Create one OrgEmail
const OrgEmail = await prisma.orgEmail.create({
data: {
// ... data to create a OrgEmail
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgEmailCreateInput | OrgEmailUncheckedCreateInput | Yes |
Delete one OrgEmail
// Delete one OrgEmail
const OrgEmail = await prisma.orgEmail.delete({
where: {
// ... filter to delete one OrgEmail
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailWhereUniqueInput | Yes |
Update one OrgEmail
// Update one OrgEmail
const orgEmail = await prisma.orgEmail.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgEmailUpdateInput | OrgEmailUncheckedUpdateInput | Yes |
| where | OrgEmailWhereUniqueInput | Yes |
Delete zero or more OrgEmail
// Delete a few OrgEmail
const { count } = await prisma.orgEmail.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailWhereInput | No |
Update zero or one OrgEmail
const { count } = await prisma.orgEmail.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgEmailUpdateManyMutationInput | OrgEmailUncheckedUpdateManyInput | Yes |
| where | OrgEmailWhereInput | No |
Create or update one OrgEmail
// Update or create a OrgEmail
const orgEmail = await prisma.orgEmail.upsert({
create: {
// ... data to create a OrgEmail
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrgEmail we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailWhereUniqueInput | Yes |
| create | OrgEmailCreateInput | OrgEmailUncheckedCreateInput | Yes |
| update | OrgEmailUpdateInput | OrgEmailUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| domainName | String |
|
Yes | - |
| extension | String |
|
Yes | - |
| org | Organization? |
|
No | - |
| orgId | String |
|
Yes | - |
Find zero or one OrgDomain
// Get one OrgDomain
const orgDomain = await prisma.orgDomain.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgDomainWhereUniqueInput | Yes |
Find first OrgDomain
// Get one OrgDomain
const orgDomain = await prisma.orgDomain.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgDomainWhereInput | No |
| orderBy | OrgDomainOrderByWithRelationInput[] | OrgDomainOrderByWithRelationInput | No |
| cursor | OrgDomainWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrgDomainScalarFieldEnum | OrgDomainScalarFieldEnum[] | No |
Find zero or more OrgDomain
// Get all OrgDomain
const OrgDomain = await prisma.orgDomain.findMany()
// Get first 10 OrgDomain
const OrgDomain = await prisma.orgDomain.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrgDomainWhereInput | No |
| orderBy | OrgDomainOrderByWithRelationInput[] | OrgDomainOrderByWithRelationInput | No |
| cursor | OrgDomainWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrgDomainScalarFieldEnum | OrgDomainScalarFieldEnum[] | No |
Create one OrgDomain
// Create one OrgDomain
const OrgDomain = await prisma.orgDomain.create({
data: {
// ... data to create a OrgDomain
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgDomainCreateInput | OrgDomainUncheckedCreateInput | Yes |
Delete one OrgDomain
// Delete one OrgDomain
const OrgDomain = await prisma.orgDomain.delete({
where: {
// ... filter to delete one OrgDomain
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgDomainWhereUniqueInput | Yes |
Update one OrgDomain
// Update one OrgDomain
const orgDomain = await prisma.orgDomain.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgDomainUpdateInput | OrgDomainUncheckedUpdateInput | Yes |
| where | OrgDomainWhereUniqueInput | Yes |
Delete zero or more OrgDomain
// Delete a few OrgDomain
const { count } = await prisma.orgDomain.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgDomainWhereInput | No |
Update zero or one OrgDomain
const { count } = await prisma.orgDomain.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgDomainUpdateManyMutationInput | OrgDomainUncheckedUpdateManyInput | Yes |
| where | OrgDomainWhereInput | No |
Create or update one OrgDomain
// Update or create a OrgDomain
const orgDomain = await prisma.orgDomain.upsert({
create: {
// ... data to create a OrgDomain
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrgDomain we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgDomainWhereUniqueInput | Yes |
| create | OrgDomainCreateInput | OrgDomainUncheckedCreateInput | Yes |
| update | OrgDomainUpdateInput | OrgDomainUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean? |
|
No | - |
| isPublic | Boolean? |
|
No | - |
| isDeleted | Int? |
|
No | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| String |
|
Yes | ||
| lastName | String? |
|
No | - |
| firstName | String? |
|
No | - |
| title | Title? |
|
No | - |
| nickName | String? |
|
No | - |
| Gender | Gender? |
|
No | - |
| social | Json? |
|
No | - |
| Language | Language? |
|
No | - |
| dob | DateTime? |
|
No | - |
| address | Json? |
|
No | - |
| isValidated | DateTime? |
|
No | - |
| isSuspended | DateTime? |
|
No | - |
| Orgs | Organization[] |
|
Yes | - |
| manager | User? |
|
No | - |
| managerId | String? |
|
No | - |
| Team | User[] |
|
Yes | - |
| Profiles | Profile[] |
|
Yes | - |
| Groups | Group[] |
|
Yes | - |
| Posts | Post[] |
|
Yes | - |
| Comments | Comment[] |
|
Yes | - |
| Stories | Story[] |
|
Yes | - |
| Todo | UserTodoLink[] |
|
Yes | - |
| TodosAuthor | Todo[] |
|
Yes | - |
| Tasks | UserTaskLink[] |
|
Yes | - |
| TasksAuthor | Task[] |
|
Yes | - |
| Files | File[] |
|
Yes | - |
| ChangesLogs | ChangesTracking[] |
|
Yes | - |
| Roles | Role[] |
|
Yes | - |
| Permissions | PermissionClaim[] |
|
Yes | - |
| Tokens | Token[] |
|
Yes | - |
| ApiKeys | ApiKey[] |
|
Yes | - |
| isTfaEnable | Boolean |
|
Yes | - |
| tfaSecret | String? |
|
No | - |
| userSecret | UserSecret? |
|
No | - |
| followers | UserFollower[] |
|
Yes | - |
| followings | UserFollower[] |
|
Yes | - |
| posts_liked | PostLike[] |
|
Yes | - |
| passWordFaker | String? |
|
No | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
| pwdHash | String? |
|
No | @password @omit |
| salt | String? |
|
No | - |
| isAdmin | Boolean? |
|
No | - |
Find zero or one UserSecret
// Get one UserSecret
const userSecret = await prisma.userSecret.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSecretWhereUniqueInput | Yes |
Find first UserSecret
// Get one UserSecret
const userSecret = await prisma.userSecret.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSecretWhereInput | No |
| orderBy | UserSecretOrderByWithRelationInput[] | UserSecretOrderByWithRelationInput | No |
| cursor | UserSecretWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserSecretScalarFieldEnum | UserSecretScalarFieldEnum[] | No |
Find zero or more UserSecret
// Get all UserSecret
const UserSecret = await prisma.userSecret.findMany()
// Get first 10 UserSecret
const UserSecret = await prisma.userSecret.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserSecretWhereInput | No |
| orderBy | UserSecretOrderByWithRelationInput[] | UserSecretOrderByWithRelationInput | No |
| cursor | UserSecretWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserSecretScalarFieldEnum | UserSecretScalarFieldEnum[] | No |
Create one UserSecret
// Create one UserSecret
const UserSecret = await prisma.userSecret.create({
data: {
// ... data to create a UserSecret
}
})
| Name | Type | Required |
|---|---|---|
| data | UserSecretCreateInput | UserSecretUncheckedCreateInput | Yes |
Delete one UserSecret
// Delete one UserSecret
const UserSecret = await prisma.userSecret.delete({
where: {
// ... filter to delete one UserSecret
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSecretWhereUniqueInput | Yes |
Update one UserSecret
// Update one UserSecret
const userSecret = await prisma.userSecret.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserSecretUpdateInput | UserSecretUncheckedUpdateInput | Yes |
| where | UserSecretWhereUniqueInput | Yes |
Delete zero or more UserSecret
// Delete a few UserSecret
const { count } = await prisma.userSecret.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSecretWhereInput | No |
Update zero or one UserSecret
const { count } = await prisma.userSecret.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserSecretUpdateManyMutationInput | UserSecretUncheckedUpdateManyInput | Yes |
| where | UserSecretWhereInput | No |
Create or update one UserSecret
// Update or create a UserSecret
const userSecret = await prisma.userSecret.upsert({
create: {
// ... data to create a UserSecret
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserSecret we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSecretWhereUniqueInput | Yes |
| create | UserSecretCreateInput | UserSecretUncheckedCreateInput | Yes |
| update | UserSecretUpdateInput | UserSecretUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| orderProfile | Int |
|
Yes | - |
| Users | User[] |
|
Yes | - |
| bio | String |
|
Yes | - |
Find zero or one Profile
// Get one Profile
const profile = await prisma.profile.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereUniqueInput | Yes |
Find first Profile
// Get one Profile
const profile = await prisma.profile.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereInput | No |
| orderBy | ProfileOrderByWithRelationInput[] | ProfileOrderByWithRelationInput | No |
| cursor | ProfileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProfileScalarFieldEnum | ProfileScalarFieldEnum[] | No |
Find zero or more Profile
// Get all Profile
const Profile = await prisma.profile.findMany()
// Get first 10 Profile
const Profile = await prisma.profile.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereInput | No |
| orderBy | ProfileOrderByWithRelationInput[] | ProfileOrderByWithRelationInput | No |
| cursor | ProfileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProfileScalarFieldEnum | ProfileScalarFieldEnum[] | No |
Create one Profile
// Create one Profile
const Profile = await prisma.profile.create({
data: {
// ... data to create a Profile
}
})
| Name | Type | Required |
|---|---|---|
| data | ProfileCreateInput | ProfileUncheckedCreateInput | Yes |
Delete one Profile
// Delete one Profile
const Profile = await prisma.profile.delete({
where: {
// ... filter to delete one Profile
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereUniqueInput | Yes |
Update one Profile
// Update one Profile
const profile = await prisma.profile.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProfileUpdateInput | ProfileUncheckedUpdateInput | Yes |
| where | ProfileWhereUniqueInput | Yes |
Delete zero or more Profile
// Delete a few Profile
const { count } = await prisma.profile.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereInput | No |
Update zero or one Profile
const { count } = await prisma.profile.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProfileUpdateManyMutationInput | ProfileUncheckedUpdateManyInput | Yes |
| where | ProfileWhereInput | No |
Create or update one Profile
// Update or create a Profile
const profile = await prisma.profile.upsert({
create: {
// ... data to create a Profile
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Profile we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereUniqueInput | Yes |
| create | ProfileCreateInput | ProfileUncheckedCreateInput | Yes |
| update | ProfileUpdateInput | ProfileUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| orderGroup | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| isActiv | DateTime? |
|
No | - |
| Users | User[] |
|
Yes | - |
| Tasks | Task[] |
|
Yes | - |
| Todos | Todo[] |
|
Yes | - |
| Posts | Post[] |
|
Yes | - |
| Files | File[] |
|
Yes | - |
| org | Organization |
|
Yes | - |
| orgId | String |
|
Yes | - |
Find zero or one Group
// Get one Group
const group = await prisma.group.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GroupWhereUniqueInput | Yes |
Find first Group
// Get one Group
const group = await prisma.group.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GroupWhereInput | No |
| orderBy | GroupOrderByWithRelationInput[] | GroupOrderByWithRelationInput | No |
| cursor | GroupWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GroupScalarFieldEnum | GroupScalarFieldEnum[] | No |
Find zero or more Group
// Get all Group
const Group = await prisma.group.findMany()
// Get first 10 Group
const Group = await prisma.group.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | GroupWhereInput | No |
| orderBy | GroupOrderByWithRelationInput[] | GroupOrderByWithRelationInput | No |
| cursor | GroupWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GroupScalarFieldEnum | GroupScalarFieldEnum[] | No |
Create one Group
// Create one Group
const Group = await prisma.group.create({
data: {
// ... data to create a Group
}
})
| Name | Type | Required |
|---|---|---|
| data | GroupCreateInput | GroupUncheckedCreateInput | Yes |
Delete one Group
// Delete one Group
const Group = await prisma.group.delete({
where: {
// ... filter to delete one Group
}
})
| Name | Type | Required |
|---|---|---|
| where | GroupWhereUniqueInput | Yes |
Update one Group
// Update one Group
const group = await prisma.group.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GroupUpdateInput | GroupUncheckedUpdateInput | Yes |
| where | GroupWhereUniqueInput | Yes |
Delete zero or more Group
// Delete a few Group
const { count } = await prisma.group.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GroupWhereInput | No |
Update zero or one Group
const { count } = await prisma.group.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GroupUpdateManyMutationInput | GroupUncheckedUpdateManyInput | Yes |
| where | GroupWhereInput | No |
Create or update one Group
// Update or create a Group
const group = await prisma.group.upsert({
create: {
// ... data to create a Group
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Group we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | GroupWhereUniqueInput | Yes |
| create | GroupCreateInput | GroupUncheckedCreateInput | Yes |
| update | GroupUpdateInput | GroupUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| isPublic | Boolean |
|
Yes | - |
| owner | User |
|
Yes | - |
| ownerId | String |
|
Yes | - |
| org | Organization |
|
Yes | - |
| orgId | String |
|
Yes | - |
| groups | Group[] |
|
Yes | - |
| orderTodo | Int |
|
Yes | - |
| title | String |
|
Yes | - |
| content | String? |
|
No | - |
| todoState | TodoState |
|
Yes | - |
| mainTodo | Todo? |
|
No | - |
| mainTodoId | String? |
|
No | - |
| SubTodos | Todo[] |
|
Yes | - |
| Users | UserTodoLink[] |
|
Yes | - |
| Tasks | Task[] |
|
Yes | - |
Find zero or one Todo
// Get one Todo
const todo = await prisma.todo.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TodoWhereUniqueInput | Yes |
Find first Todo
// Get one Todo
const todo = await prisma.todo.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TodoWhereInput | No |
| orderBy | TodoOrderByWithRelationInput[] | TodoOrderByWithRelationInput | No |
| cursor | TodoWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TodoScalarFieldEnum | TodoScalarFieldEnum[] | No |
Find zero or more Todo
// Get all Todo
const Todo = await prisma.todo.findMany()
// Get first 10 Todo
const Todo = await prisma.todo.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TodoWhereInput | No |
| orderBy | TodoOrderByWithRelationInput[] | TodoOrderByWithRelationInput | No |
| cursor | TodoWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TodoScalarFieldEnum | TodoScalarFieldEnum[] | No |
Create one Todo
// Create one Todo
const Todo = await prisma.todo.create({
data: {
// ... data to create a Todo
}
})
| Name | Type | Required |
|---|---|---|
| data | TodoCreateInput | TodoUncheckedCreateInput | Yes |
Delete one Todo
// Delete one Todo
const Todo = await prisma.todo.delete({
where: {
// ... filter to delete one Todo
}
})
| Name | Type | Required |
|---|---|---|
| where | TodoWhereUniqueInput | Yes |
Update one Todo
// Update one Todo
const todo = await prisma.todo.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TodoUpdateInput | TodoUncheckedUpdateInput | Yes |
| where | TodoWhereUniqueInput | Yes |
Delete zero or more Todo
// Delete a few Todo
const { count } = await prisma.todo.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TodoWhereInput | No |
Update zero or one Todo
const { count } = await prisma.todo.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TodoUpdateManyMutationInput | TodoUncheckedUpdateManyInput | Yes |
| where | TodoWhereInput | No |
Create or update one Todo
// Update or create a Todo
const todo = await prisma.todo.upsert({
create: {
// ... data to create a Todo
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Todo we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TodoWhereUniqueInput | Yes |
| create | TodoCreateInput | TodoUncheckedCreateInput | Yes |
| update | TodoUpdateInput | TodoUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
Find zero or one UserTodoLink
// Get one UserTodoLink
const userTodoLink = await prisma.userTodoLink.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | Yes |
Find first UserTodoLink
// Get one UserTodoLink
const userTodoLink = await prisma.userTodoLink.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTodoLinkWhereInput | No |
| orderBy | UserTodoLinkOrderByWithRelationInput[] | UserTodoLinkOrderByWithRelationInput | No |
| cursor | UserTodoLinkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserTodoLinkScalarFieldEnum | UserTodoLinkScalarFieldEnum[] | No |
Find zero or more UserTodoLink
// Get all UserTodoLink
const UserTodoLink = await prisma.userTodoLink.findMany()
// Get first 10 UserTodoLink
const UserTodoLink = await prisma.userTodoLink.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserTodoLinkWhereInput | No |
| orderBy | UserTodoLinkOrderByWithRelationInput[] | UserTodoLinkOrderByWithRelationInput | No |
| cursor | UserTodoLinkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserTodoLinkScalarFieldEnum | UserTodoLinkScalarFieldEnum[] | No |
Create one UserTodoLink
// Create one UserTodoLink
const UserTodoLink = await prisma.userTodoLink.create({
data: {
// ... data to create a UserTodoLink
}
})
| Name | Type | Required |
|---|---|---|
| data | UserTodoLinkCreateInput | UserTodoLinkUncheckedCreateInput | Yes |
Delete one UserTodoLink
// Delete one UserTodoLink
const UserTodoLink = await prisma.userTodoLink.delete({
where: {
// ... filter to delete one UserTodoLink
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | Yes |
Update one UserTodoLink
// Update one UserTodoLink
const userTodoLink = await prisma.userTodoLink.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserTodoLinkUpdateInput | UserTodoLinkUncheckedUpdateInput | Yes |
| where | UserTodoLinkWhereUniqueInput | Yes |
Delete zero or more UserTodoLink
// Delete a few UserTodoLink
const { count } = await prisma.userTodoLink.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTodoLinkWhereInput | No |
Update zero or one UserTodoLink
const { count } = await prisma.userTodoLink.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserTodoLinkUpdateManyMutationInput | UserTodoLinkUncheckedUpdateManyInput | Yes |
| where | UserTodoLinkWhereInput | No |
Create or update one UserTodoLink
// Update or create a UserTodoLink
const userTodoLink = await prisma.userTodoLink.upsert({
create: {
// ... data to create a UserTodoLink
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserTodoLink we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | Yes |
| create | UserTodoLinkCreateInput | UserTodoLinkUncheckedCreateInput | Yes |
| update | UserTodoLinkUpdateInput | UserTodoLinkUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| isPublic | Boolean |
|
Yes | - |
| owner | User |
|
Yes | - |
| ownerId | String |
|
Yes | - |
| org | Organization |
|
Yes | - |
| orgId | String |
|
Yes | - |
| groups | Group[] |
|
Yes | - |
| orderTask | Int |
|
Yes | - |
| title | String |
|
Yes | - |
| content | String? |
|
No | - |
| taskState | TaskState |
|
Yes | - |
| mainTask | Task? |
|
No | - |
| mainTaskId | String? |
|
No | - |
| SubTasks | Task[] |
|
Yes | - |
| Users | UserTaskLink[] |
|
Yes | - |
| todo | Todo? |
|
No | - |
| todoId | String? |
|
No | - |
Find zero or one Task
// Get one Task
const task = await prisma.task.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereUniqueInput | Yes |
Find first Task
// Get one Task
const task = await prisma.task.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereInput | No |
| orderBy | TaskOrderByWithRelationInput[] | TaskOrderByWithRelationInput | No |
| cursor | TaskWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TaskScalarFieldEnum | TaskScalarFieldEnum[] | No |
Find zero or more Task
// Get all Task
const Task = await prisma.task.findMany()
// Get first 10 Task
const Task = await prisma.task.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TaskWhereInput | No |
| orderBy | TaskOrderByWithRelationInput[] | TaskOrderByWithRelationInput | No |
| cursor | TaskWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TaskScalarFieldEnum | TaskScalarFieldEnum[] | No |
Create one Task
// Create one Task
const Task = await prisma.task.create({
data: {
// ... data to create a Task
}
})
| Name | Type | Required |
|---|---|---|
| data | TaskCreateInput | TaskUncheckedCreateInput | Yes |
Delete one Task
// Delete one Task
const Task = await prisma.task.delete({
where: {
// ... filter to delete one Task
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereUniqueInput | Yes |
Update one Task
// Update one Task
const task = await prisma.task.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TaskUpdateInput | TaskUncheckedUpdateInput | Yes |
| where | TaskWhereUniqueInput | Yes |
Delete zero or more Task
// Delete a few Task
const { count } = await prisma.task.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereInput | No |
Update zero or one Task
const { count } = await prisma.task.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyInput | Yes |
| where | TaskWhereInput | No |
Create or update one Task
// Update or create a Task
const task = await prisma.task.upsert({
create: {
// ... data to create a Task
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Task we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereUniqueInput | Yes |
| create | TaskCreateInput | TaskUncheckedCreateInput | Yes |
| update | TaskUpdateInput | TaskUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
Find zero or one UserTaskLink
// Get one UserTaskLink
const userTaskLink = await prisma.userTaskLink.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | Yes |
Find first UserTaskLink
// Get one UserTaskLink
const userTaskLink = await prisma.userTaskLink.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTaskLinkWhereInput | No |
| orderBy | UserTaskLinkOrderByWithRelationInput[] | UserTaskLinkOrderByWithRelationInput | No |
| cursor | UserTaskLinkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserTaskLinkScalarFieldEnum | UserTaskLinkScalarFieldEnum[] | No |
Find zero or more UserTaskLink
// Get all UserTaskLink
const UserTaskLink = await prisma.userTaskLink.findMany()
// Get first 10 UserTaskLink
const UserTaskLink = await prisma.userTaskLink.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserTaskLinkWhereInput | No |
| orderBy | UserTaskLinkOrderByWithRelationInput[] | UserTaskLinkOrderByWithRelationInput | No |
| cursor | UserTaskLinkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserTaskLinkScalarFieldEnum | UserTaskLinkScalarFieldEnum[] | No |
Create one UserTaskLink
// Create one UserTaskLink
const UserTaskLink = await prisma.userTaskLink.create({
data: {
// ... data to create a UserTaskLink
}
})
| Name | Type | Required |
|---|---|---|
| data | UserTaskLinkCreateInput | UserTaskLinkUncheckedCreateInput | Yes |
Delete one UserTaskLink
// Delete one UserTaskLink
const UserTaskLink = await prisma.userTaskLink.delete({
where: {
// ... filter to delete one UserTaskLink
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | Yes |
Update one UserTaskLink
// Update one UserTaskLink
const userTaskLink = await prisma.userTaskLink.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserTaskLinkUpdateInput | UserTaskLinkUncheckedUpdateInput | Yes |
| where | UserTaskLinkWhereUniqueInput | Yes |
Delete zero or more UserTaskLink
// Delete a few UserTaskLink
const { count } = await prisma.userTaskLink.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTaskLinkWhereInput | No |
Update zero or one UserTaskLink
const { count } = await prisma.userTaskLink.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserTaskLinkUpdateManyMutationInput | UserTaskLinkUncheckedUpdateManyInput | Yes |
| where | UserTaskLinkWhereInput | No |
Create or update one UserTaskLink
// Update or create a UserTaskLink
const userTaskLink = await prisma.userTaskLink.upsert({
create: {
// ... data to create a UserTaskLink
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserTaskLink we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | Yes |
| create | UserTaskLinkCreateInput | UserTaskLinkUncheckedCreateInput | Yes |
| update | UserTaskLinkUpdateInput | UserTaskLinkUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| isPublic | Boolean |
|
Yes | - |
| owner | User |
|
Yes | - |
| ownerId | String |
|
Yes | - |
| org | Organization |
|
Yes | - |
| orgId | String |
|
Yes | - |
| groups | Group[] |
|
Yes | - |
| orderPost | Int? |
|
No | - |
| title | String |
|
Yes | - |
| content | String? |
|
No | - |
| Categories | Category[] |
|
Yes | - |
| Comments | Comment[] |
|
Yes | - |
| LikedBys | PostLike[] |
|
Yes | - |
Find zero or one Post
// Get one Post
const post = await prisma.post.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
Find first Post
// Get one Post
const post = await prisma.post.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
| orderBy | PostOrderByWithRelationInput[] | PostOrderByWithRelationInput | No |
| cursor | PostWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostScalarFieldEnum | PostScalarFieldEnum[] | No |
Find zero or more Post
// Get all Post
const Post = await prisma.post.findMany()
// Get first 10 Post
const Post = await prisma.post.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
| orderBy | PostOrderByWithRelationInput[] | PostOrderByWithRelationInput | No |
| cursor | PostWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostScalarFieldEnum | PostScalarFieldEnum[] | No |
Create one Post
// Create one Post
const Post = await prisma.post.create({
data: {
// ... data to create a Post
}
})
| Name | Type | Required |
|---|---|---|
| data | PostCreateInput | PostUncheckedCreateInput | Yes |
Delete one Post
// Delete one Post
const Post = await prisma.post.delete({
where: {
// ... filter to delete one Post
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
Update one Post
// Update one Post
const post = await prisma.post.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpdateInput | PostUncheckedUpdateInput | Yes |
| where | PostWhereUniqueInput | Yes |
Delete zero or more Post
// Delete a few Post
const { count } = await prisma.post.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
Update zero or one Post
const { count } = await prisma.post.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyInput | Yes |
| where | PostWhereInput | No |
Create or update one Post
// Update or create a Post
const post = await prisma.post.upsert({
create: {
// ... data to create a Post
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Post we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
| create | PostCreateInput | PostUncheckedCreateInput | Yes |
| update | PostUpdateInput | PostUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean? |
|
No | - |
| isPublic | Boolean? |
|
No | - |
| isDeleted | Int? |
|
No | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| orderCategory | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| Posts | Post[] |
|
Yes | - |
Find zero or one Category
// Get one Category
const category = await prisma.category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Find first Category
// Get one Category
const category = await prisma.category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Find zero or more Category
// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Create one Category
// Create one Category
const Category = await prisma.category.create({
data: {
// ... data to create a Category
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
Delete one Category
// Delete one Category
const Category = await prisma.category.delete({
where: {
// ... filter to delete one Category
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Update one Category
// Update one Category
const category = await prisma.category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| where | CategoryWhereUniqueInput | Yes |
Delete zero or more Category
// Delete a few Category
const { count } = await prisma.category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
Update zero or one Category
const { count } = await prisma.category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyInput | Yes |
| where | CategoryWhereInput | No |
Create or update one Category
// Update or create a Category
const category = await prisma.category.upsert({
create: {
// ... data to create a Category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
| create | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
| update | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean? |
|
No | - |
| isPublic | Boolean? |
|
No | - |
| isDeleted | Int? |
|
No | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| orderComment | Int |
|
Yes | - |
| content | String? |
|
No | - |
| post | Post |
|
Yes | - |
| postId | String |
|
Yes | - |
| author | User |
|
Yes | - |
| authorId | String |
|
Yes | - |
Find zero or one Comment
// Get one Comment
const comment = await prisma.comment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
Find first Comment
// Get one Comment
const comment = await prisma.comment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| orderBy | CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput | No |
| cursor | CommentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentScalarFieldEnum | CommentScalarFieldEnum[] | No |
Find zero or more Comment
// Get all Comment
const Comment = await prisma.comment.findMany()
// Get first 10 Comment
const Comment = await prisma.comment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| orderBy | CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput | No |
| cursor | CommentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentScalarFieldEnum | CommentScalarFieldEnum[] | No |
Create one Comment
// Create one Comment
const Comment = await prisma.comment.create({
data: {
// ... data to create a Comment
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentCreateInput | CommentUncheckedCreateInput | Yes |
Delete one Comment
// Delete one Comment
const Comment = await prisma.comment.delete({
where: {
// ... filter to delete one Comment
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
Update one Comment
// Update one Comment
const comment = await prisma.comment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpdateInput | CommentUncheckedUpdateInput | Yes |
| where | CommentWhereUniqueInput | Yes |
Delete zero or more Comment
// Delete a few Comment
const { count } = await prisma.comment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
Update zero or one Comment
const { count } = await prisma.comment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyInput | Yes |
| where | CommentWhereInput | No |
Create or update one Comment
// Update or create a Comment
const comment = await prisma.comment.upsert({
create: {
// ... data to create a Comment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Comment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
| create | CommentCreateInput | CommentUncheckedCreateInput | Yes |
| update | CommentUpdateInput | CommentUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| isPublic | Boolean |
|
Yes | - |
| owner | User |
|
Yes | - |
| ownerId | String |
|
Yes | - |
| org | Organization |
|
Yes | - |
| orgId | String |
|
Yes | - |
| groups | Group[] |
|
Yes | - |
| name | String |
|
Yes | - |
| storageName | String |
|
Yes | - |
| type | String? |
|
No | - |
| data | String? |
|
No | - |
| size | Int? |
|
No | - |
| isArchived | DateTime? |
|
No | - |
Find zero or one File
// Get one File
const file = await prisma.file.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FileWhereUniqueInput | Yes |
Find first File
// Get one File
const file = await prisma.file.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FileWhereInput | No |
| orderBy | FileOrderByWithRelationInput[] | FileOrderByWithRelationInput | No |
| cursor | FileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FileScalarFieldEnum | FileScalarFieldEnum[] | No |
Find zero or more File
// Get all File
const File = await prisma.file.findMany()
// Get first 10 File
const File = await prisma.file.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FileWhereInput | No |
| orderBy | FileOrderByWithRelationInput[] | FileOrderByWithRelationInput | No |
| cursor | FileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FileScalarFieldEnum | FileScalarFieldEnum[] | No |
Create one File
// Create one File
const File = await prisma.file.create({
data: {
// ... data to create a File
}
})
| Name | Type | Required |
|---|---|---|
| data | FileCreateInput | FileUncheckedCreateInput | Yes |
Delete one File
// Delete one File
const File = await prisma.file.delete({
where: {
// ... filter to delete one File
}
})
| Name | Type | Required |
|---|---|---|
| where | FileWhereUniqueInput | Yes |
Update one File
// Update one File
const file = await prisma.file.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FileUpdateInput | FileUncheckedUpdateInput | Yes |
| where | FileWhereUniqueInput | Yes |
Delete zero or more File
// Delete a few File
const { count } = await prisma.file.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FileWhereInput | No |
Update zero or one File
const { count } = await prisma.file.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FileUpdateManyMutationInput | FileUncheckedUpdateManyInput | Yes |
| where | FileWhereInput | No |
Create or update one File
// Update or create a File
const file = await prisma.file.upsert({
create: {
// ... data to create a File
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the File we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FileWhereUniqueInput | Yes |
| create | FileCreateInput | FileUncheckedCreateInput | Yes |
| update | FileUpdateInput | FileUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
Find zero or one UserFollower
// Get one UserFollower
const userFollower = await prisma.userFollower.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserFollowerWhereUniqueInput | Yes |
Find first UserFollower
// Get one UserFollower
const userFollower = await prisma.userFollower.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserFollowerWhereInput | No |
| orderBy | UserFollowerOrderByWithRelationInput[] | UserFollowerOrderByWithRelationInput | No |
| cursor | UserFollowerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserFollowerScalarFieldEnum | UserFollowerScalarFieldEnum[] | No |
Find zero or more UserFollower
// Get all UserFollower
const UserFollower = await prisma.userFollower.findMany()
// Get first 10 UserFollower
const UserFollower = await prisma.userFollower.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserFollowerWhereInput | No |
| orderBy | UserFollowerOrderByWithRelationInput[] | UserFollowerOrderByWithRelationInput | No |
| cursor | UserFollowerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserFollowerScalarFieldEnum | UserFollowerScalarFieldEnum[] | No |
Create one UserFollower
// Create one UserFollower
const UserFollower = await prisma.userFollower.create({
data: {
// ... data to create a UserFollower
}
})
| Name | Type | Required |
|---|---|---|
| data | UserFollowerCreateInput | UserFollowerUncheckedCreateInput | Yes |
Delete one UserFollower
// Delete one UserFollower
const UserFollower = await prisma.userFollower.delete({
where: {
// ... filter to delete one UserFollower
}
})
| Name | Type | Required |
|---|---|---|
| where | UserFollowerWhereUniqueInput | Yes |
Update one UserFollower
// Update one UserFollower
const userFollower = await prisma.userFollower.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserFollowerUpdateInput | UserFollowerUncheckedUpdateInput | Yes |
| where | UserFollowerWhereUniqueInput | Yes |
Delete zero or more UserFollower
// Delete a few UserFollower
const { count } = await prisma.userFollower.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserFollowerWhereInput | No |
Update zero or one UserFollower
const { count } = await prisma.userFollower.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserFollowerUpdateManyMutationInput | UserFollowerUncheckedUpdateManyInput | Yes |
| where | UserFollowerWhereInput | No |
Create or update one UserFollower
// Update or create a UserFollower
const userFollower = await prisma.userFollower.upsert({
create: {
// ... data to create a UserFollower
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserFollower we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserFollowerWhereUniqueInput | Yes |
| create | UserFollowerCreateInput | UserFollowerUncheckedCreateInput | Yes |
| update | UserFollowerUpdateInput | UserFollowerUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
Find zero or one PostLike
// Get one PostLike
const postLike = await prisma.postLike.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostLikeWhereUniqueInput | Yes |
Find first PostLike
// Get one PostLike
const postLike = await prisma.postLike.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostLikeWhereInput | No |
| orderBy | PostLikeOrderByWithRelationInput[] | PostLikeOrderByWithRelationInput | No |
| cursor | PostLikeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostLikeScalarFieldEnum | PostLikeScalarFieldEnum[] | No |
Find zero or more PostLike
// Get all PostLike
const PostLike = await prisma.postLike.findMany()
// Get first 10 PostLike
const PostLike = await prisma.postLike.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PostLikeWhereInput | No |
| orderBy | PostLikeOrderByWithRelationInput[] | PostLikeOrderByWithRelationInput | No |
| cursor | PostLikeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostLikeScalarFieldEnum | PostLikeScalarFieldEnum[] | No |
Create one PostLike
// Create one PostLike
const PostLike = await prisma.postLike.create({
data: {
// ... data to create a PostLike
}
})
| Name | Type | Required |
|---|---|---|
| data | PostLikeCreateInput | PostLikeUncheckedCreateInput | Yes |
Delete one PostLike
// Delete one PostLike
const PostLike = await prisma.postLike.delete({
where: {
// ... filter to delete one PostLike
}
})
| Name | Type | Required |
|---|---|---|
| where | PostLikeWhereUniqueInput | Yes |
Update one PostLike
// Update one PostLike
const postLike = await prisma.postLike.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostLikeUpdateInput | PostLikeUncheckedUpdateInput | Yes |
| where | PostLikeWhereUniqueInput | Yes |
Delete zero or more PostLike
// Delete a few PostLike
const { count } = await prisma.postLike.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostLikeWhereInput | No |
Update zero or one PostLike
const { count } = await prisma.postLike.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostLikeUpdateManyMutationInput | PostLikeUncheckedUpdateManyInput | Yes |
| where | PostLikeWhereInput | No |
Create or update one PostLike
// Update or create a PostLike
const postLike = await prisma.postLike.upsert({
create: {
// ... data to create a PostLike
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PostLike we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PostLikeWhereUniqueInput | Yes |
| create | PostLikeCreateInput | PostLikeUncheckedCreateInput | Yes |
| update | PostLikeUpdateInput | PostLikeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean? |
|
No | - |
| isPublic | Boolean? |
|
No | - |
| isDeleted | Int? |
|
No | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| caption | String |
|
Yes | - |
| user_id | String |
|
Yes | - |
| user | User |
|
Yes | - |
Find zero or one Story
// Get one Story
const story = await prisma.story.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereUniqueInput | Yes |
Find first Story
// Get one Story
const story = await prisma.story.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereInput | No |
| orderBy | StoryOrderByWithRelationInput[] | StoryOrderByWithRelationInput | No |
| cursor | StoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | StoryScalarFieldEnum | StoryScalarFieldEnum[] | No |
Find zero or more Story
// Get all Story
const Story = await prisma.story.findMany()
// Get first 10 Story
const Story = await prisma.story.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | StoryWhereInput | No |
| orderBy | StoryOrderByWithRelationInput[] | StoryOrderByWithRelationInput | No |
| cursor | StoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | StoryScalarFieldEnum | StoryScalarFieldEnum[] | No |
Create one Story
// Create one Story
const Story = await prisma.story.create({
data: {
// ... data to create a Story
}
})
| Name | Type | Required |
|---|---|---|
| data | StoryCreateInput | StoryUncheckedCreateInput | Yes |
Delete one Story
// Delete one Story
const Story = await prisma.story.delete({
where: {
// ... filter to delete one Story
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereUniqueInput | Yes |
Update one Story
// Update one Story
const story = await prisma.story.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | StoryUpdateInput | StoryUncheckedUpdateInput | Yes |
| where | StoryWhereUniqueInput | Yes |
Delete zero or more Story
// Delete a few Story
const { count } = await prisma.story.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereInput | No |
Update zero or one Story
const { count } = await prisma.story.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | StoryUpdateManyMutationInput | StoryUncheckedUpdateManyInput | Yes |
| where | StoryWhereInput | No |
Create or update one Story
// Update or create a Story
const story = await prisma.story.upsert({
create: {
// ... data to create a Story
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Story we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereUniqueInput | Yes |
| create | StoryCreateInput | StoryUncheckedCreateInput | Yes |
| update | StoryUpdateInput | StoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| type | String |
|
Yes | - |
| url | String |
|
Yes | - |
| associated_id | String |
|
Yes | - |
| sequence | Int |
|
Yes | - |
Find zero or one Image
// Get one Image
const image = await prisma.image.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
Find first Image
// Get one Image
const image = await prisma.image.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
| orderBy | ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput | No |
| cursor | ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ImageScalarFieldEnum | ImageScalarFieldEnum[] | No |
Find zero or more Image
// Get all Image
const Image = await prisma.image.findMany()
// Get first 10 Image
const Image = await prisma.image.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
| orderBy | ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput | No |
| cursor | ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ImageScalarFieldEnum | ImageScalarFieldEnum[] | No |
Create one Image
// Create one Image
const Image = await prisma.image.create({
data: {
// ... data to create a Image
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageCreateInput | ImageUncheckedCreateInput | Yes |
Delete one Image
// Delete one Image
const Image = await prisma.image.delete({
where: {
// ... filter to delete one Image
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
Update one Image
// Update one Image
const image = await prisma.image.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageUpdateInput | ImageUncheckedUpdateInput | Yes |
| where | ImageWhereUniqueInput | Yes |
Delete zero or more Image
// Delete a few Image
const { count } = await prisma.image.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
Update zero or one Image
const { count } = await prisma.image.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageUpdateManyMutationInput | ImageUncheckedUpdateManyInput | Yes |
| where | ImageWhereInput | No |
Create or update one Image
// Update or create a Image
const image = await prisma.image.upsert({
create: {
// ... data to create a Image
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Image we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
| create | ImageCreateInput | ImageUncheckedCreateInput | Yes |
| update | ImageUpdateInput | ImageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| name | String |
|
Yes | - |
| value | String |
|
Yes | - |
| utility | String |
|
Yes | - |
Find zero or one ConfigParam
// Get one ConfigParam
const configParam = await prisma.configParam.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConfigParamWhereUniqueInput | Yes |
Find first ConfigParam
// Get one ConfigParam
const configParam = await prisma.configParam.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConfigParamWhereInput | No |
| orderBy | ConfigParamOrderByWithRelationInput[] | ConfigParamOrderByWithRelationInput | No |
| cursor | ConfigParamWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConfigParamScalarFieldEnum | ConfigParamScalarFieldEnum[] | No |
Find zero or more ConfigParam
// Get all ConfigParam
const ConfigParam = await prisma.configParam.findMany()
// Get first 10 ConfigParam
const ConfigParam = await prisma.configParam.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConfigParamWhereInput | No |
| orderBy | ConfigParamOrderByWithRelationInput[] | ConfigParamOrderByWithRelationInput | No |
| cursor | ConfigParamWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConfigParamScalarFieldEnum | ConfigParamScalarFieldEnum[] | No |
Create one ConfigParam
// Create one ConfigParam
const ConfigParam = await prisma.configParam.create({
data: {
// ... data to create a ConfigParam
}
})
| Name | Type | Required |
|---|---|---|
| data | ConfigParamCreateInput | ConfigParamUncheckedCreateInput | Yes |
Delete one ConfigParam
// Delete one ConfigParam
const ConfigParam = await prisma.configParam.delete({
where: {
// ... filter to delete one ConfigParam
}
})
| Name | Type | Required |
|---|---|---|
| where | ConfigParamWhereUniqueInput | Yes |
Update one ConfigParam
// Update one ConfigParam
const configParam = await prisma.configParam.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConfigParamUpdateInput | ConfigParamUncheckedUpdateInput | Yes |
| where | ConfigParamWhereUniqueInput | Yes |
Delete zero or more ConfigParam
// Delete a few ConfigParam
const { count } = await prisma.configParam.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConfigParamWhereInput | No |
Update zero or one ConfigParam
const { count } = await prisma.configParam.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConfigParamUpdateManyMutationInput | ConfigParamUncheckedUpdateManyInput | Yes |
| where | ConfigParamWhereInput | No |
Create or update one ConfigParam
// Update or create a ConfigParam
const configParam = await prisma.configParam.upsert({
create: {
// ... data to create a ConfigParam
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ConfigParam we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConfigParamWhereUniqueInput | Yes |
| create | ConfigParamCreateInput | ConfigParamUncheckedCreateInput | Yes |
| update | ConfigParamUpdateInput | ConfigParamUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| useTo | String |
|
Yes | - |
| isActiv | Boolean |
|
Yes | - |
| emailOrg | OrgEmail |
|
Yes | - |
| emailOrgId | Int |
|
Yes | - |
Find zero or one OrgEmailUseTo
// Get one OrgEmailUseTo
const orgEmailUseTo = await prisma.orgEmailUseTo.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailUseToWhereUniqueInput | Yes |
Find first OrgEmailUseTo
// Get one OrgEmailUseTo
const orgEmailUseTo = await prisma.orgEmailUseTo.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailUseToWhereInput | No |
| orderBy | OrgEmailUseToOrderByWithRelationInput[] | OrgEmailUseToOrderByWithRelationInput | No |
| cursor | OrgEmailUseToWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrgEmailUseToScalarFieldEnum | OrgEmailUseToScalarFieldEnum[] | No |
Find zero or more OrgEmailUseTo
// Get all OrgEmailUseTo
const OrgEmailUseTo = await prisma.orgEmailUseTo.findMany()
// Get first 10 OrgEmailUseTo
const OrgEmailUseTo = await prisma.orgEmailUseTo.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrgEmailUseToWhereInput | No |
| orderBy | OrgEmailUseToOrderByWithRelationInput[] | OrgEmailUseToOrderByWithRelationInput | No |
| cursor | OrgEmailUseToWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrgEmailUseToScalarFieldEnum | OrgEmailUseToScalarFieldEnum[] | No |
Create one OrgEmailUseTo
// Create one OrgEmailUseTo
const OrgEmailUseTo = await prisma.orgEmailUseTo.create({
data: {
// ... data to create a OrgEmailUseTo
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgEmailUseToCreateInput | OrgEmailUseToUncheckedCreateInput | Yes |
Delete one OrgEmailUseTo
// Delete one OrgEmailUseTo
const OrgEmailUseTo = await prisma.orgEmailUseTo.delete({
where: {
// ... filter to delete one OrgEmailUseTo
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailUseToWhereUniqueInput | Yes |
Update one OrgEmailUseTo
// Update one OrgEmailUseTo
const orgEmailUseTo = await prisma.orgEmailUseTo.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgEmailUseToUpdateInput | OrgEmailUseToUncheckedUpdateInput | Yes |
| where | OrgEmailUseToWhereUniqueInput | Yes |
Delete zero or more OrgEmailUseTo
// Delete a few OrgEmailUseTo
const { count } = await prisma.orgEmailUseTo.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailUseToWhereInput | No |
Update zero or one OrgEmailUseTo
const { count } = await prisma.orgEmailUseTo.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrgEmailUseToUpdateManyMutationInput | OrgEmailUseToUncheckedUpdateManyInput | Yes |
| where | OrgEmailUseToWhereInput | No |
Create or update one OrgEmailUseTo
// Update or create a OrgEmailUseTo
const orgEmailUseTo = await prisma.orgEmailUseTo.upsert({
create: {
// ... data to create a OrgEmailUseTo
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrgEmailUseTo we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrgEmailUseToWhereUniqueInput | Yes |
| create | OrgEmailUseToCreateInput | OrgEmailUseToUncheckedCreateInput | Yes |
| update | OrgEmailUseToUpdateInput | OrgEmailUseToUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| domain | String |
|
Yes | - |
| allowed | Boolean |
|
Yes | - |
Find zero or one AppEmailDomain
// Get one AppEmailDomain
const appEmailDomain = await prisma.appEmailDomain.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppEmailDomainWhereUniqueInput | Yes |
Find first AppEmailDomain
// Get one AppEmailDomain
const appEmailDomain = await prisma.appEmailDomain.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppEmailDomainWhereInput | No |
| orderBy | AppEmailDomainOrderByWithRelationInput[] | AppEmailDomainOrderByWithRelationInput | No |
| cursor | AppEmailDomainWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AppEmailDomainScalarFieldEnum | AppEmailDomainScalarFieldEnum[] | No |
Find zero or more AppEmailDomain
// Get all AppEmailDomain
const AppEmailDomain = await prisma.appEmailDomain.findMany()
// Get first 10 AppEmailDomain
const AppEmailDomain = await prisma.appEmailDomain.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AppEmailDomainWhereInput | No |
| orderBy | AppEmailDomainOrderByWithRelationInput[] | AppEmailDomainOrderByWithRelationInput | No |
| cursor | AppEmailDomainWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AppEmailDomainScalarFieldEnum | AppEmailDomainScalarFieldEnum[] | No |
Create one AppEmailDomain
// Create one AppEmailDomain
const AppEmailDomain = await prisma.appEmailDomain.create({
data: {
// ... data to create a AppEmailDomain
}
})
| Name | Type | Required |
|---|---|---|
| data | AppEmailDomainCreateInput | AppEmailDomainUncheckedCreateInput | Yes |
Delete one AppEmailDomain
// Delete one AppEmailDomain
const AppEmailDomain = await prisma.appEmailDomain.delete({
where: {
// ... filter to delete one AppEmailDomain
}
})
| Name | Type | Required |
|---|---|---|
| where | AppEmailDomainWhereUniqueInput | Yes |
Update one AppEmailDomain
// Update one AppEmailDomain
const appEmailDomain = await prisma.appEmailDomain.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AppEmailDomainUpdateInput | AppEmailDomainUncheckedUpdateInput | Yes |
| where | AppEmailDomainWhereUniqueInput | Yes |
Delete zero or more AppEmailDomain
// Delete a few AppEmailDomain
const { count } = await prisma.appEmailDomain.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AppEmailDomainWhereInput | No |
Update zero or one AppEmailDomain
const { count } = await prisma.appEmailDomain.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AppEmailDomainUpdateManyMutationInput | AppEmailDomainUncheckedUpdateManyInput | Yes |
| where | AppEmailDomainWhereInput | No |
Create or update one AppEmailDomain
// Update or create a AppEmailDomain
const appEmailDomain = await prisma.appEmailDomain.upsert({
create: {
// ... data to create a AppEmailDomain
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the AppEmailDomain we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AppEmailDomainWhereUniqueInput | Yes |
| create | AppEmailDomainCreateInput | AppEmailDomainUncheckedCreateInput | Yes |
| update | AppEmailDomainUpdateInput | AppEmailDomainUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| userId | String |
|
Yes | - |
| tokenId | String |
|
Yes | - |
Find zero or one RefreshToken
// Get one RefreshToken
const refreshToken = await prisma.refreshToken.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RefreshTokenWhereUniqueInput | Yes |
Find first RefreshToken
// Get one RefreshToken
const refreshToken = await prisma.refreshToken.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RefreshTokenWhereInput | No |
| orderBy | RefreshTokenOrderByWithRelationInput[] | RefreshTokenOrderByWithRelationInput | No |
| cursor | RefreshTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RefreshTokenScalarFieldEnum | RefreshTokenScalarFieldEnum[] | No |
Find zero or more RefreshToken
// Get all RefreshToken
const RefreshToken = await prisma.refreshToken.findMany()
// Get first 10 RefreshToken
const RefreshToken = await prisma.refreshToken.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RefreshTokenWhereInput | No |
| orderBy | RefreshTokenOrderByWithRelationInput[] | RefreshTokenOrderByWithRelationInput | No |
| cursor | RefreshTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RefreshTokenScalarFieldEnum | RefreshTokenScalarFieldEnum[] | No |
Create one RefreshToken
// Create one RefreshToken
const RefreshToken = await prisma.refreshToken.create({
data: {
// ... data to create a RefreshToken
}
})
| Name | Type | Required |
|---|---|---|
| data | RefreshTokenCreateInput | RefreshTokenUncheckedCreateInput | Yes |
Delete one RefreshToken
// Delete one RefreshToken
const RefreshToken = await prisma.refreshToken.delete({
where: {
// ... filter to delete one RefreshToken
}
})
| Name | Type | Required |
|---|---|---|
| where | RefreshTokenWhereUniqueInput | Yes |
Update one RefreshToken
// Update one RefreshToken
const refreshToken = await prisma.refreshToken.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RefreshTokenUpdateInput | RefreshTokenUncheckedUpdateInput | Yes |
| where | RefreshTokenWhereUniqueInput | Yes |
Delete zero or more RefreshToken
// Delete a few RefreshToken
const { count } = await prisma.refreshToken.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RefreshTokenWhereInput | No |
Update zero or one RefreshToken
const { count } = await prisma.refreshToken.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RefreshTokenUpdateManyMutationInput | RefreshTokenUncheckedUpdateManyInput | Yes |
| where | RefreshTokenWhereInput | No |
Create or update one RefreshToken
// Update or create a RefreshToken
const refreshToken = await prisma.refreshToken.upsert({
create: {
// ... data to create a RefreshToken
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RefreshToken we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RefreshTokenWhereUniqueInput | Yes |
| create | RefreshTokenCreateInput | RefreshTokenUncheckedCreateInput | Yes |
| update | RefreshTokenUpdateInput | RefreshTokenUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| key | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
| Scopes | Scope[] |
|
Yes | - |
Find zero or one ApiKey
// Get one ApiKey
const apiKey = await prisma.apiKey.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApiKeyWhereUniqueInput | Yes |
Find first ApiKey
// Get one ApiKey
const apiKey = await prisma.apiKey.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApiKeyWhereInput | No |
| orderBy | ApiKeyOrderByWithRelationInput[] | ApiKeyOrderByWithRelationInput | No |
| cursor | ApiKeyWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ApiKeyScalarFieldEnum | ApiKeyScalarFieldEnum[] | No |
Find zero or more ApiKey
// Get all ApiKey
const ApiKey = await prisma.apiKey.findMany()
// Get first 10 ApiKey
const ApiKey = await prisma.apiKey.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ApiKeyWhereInput | No |
| orderBy | ApiKeyOrderByWithRelationInput[] | ApiKeyOrderByWithRelationInput | No |
| cursor | ApiKeyWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ApiKeyScalarFieldEnum | ApiKeyScalarFieldEnum[] | No |
Create one ApiKey
// Create one ApiKey
const ApiKey = await prisma.apiKey.create({
data: {
// ... data to create a ApiKey
}
})
| Name | Type | Required |
|---|---|---|
| data | ApiKeyCreateInput | ApiKeyUncheckedCreateInput | Yes |
Delete one ApiKey
// Delete one ApiKey
const ApiKey = await prisma.apiKey.delete({
where: {
// ... filter to delete one ApiKey
}
})
| Name | Type | Required |
|---|---|---|
| where | ApiKeyWhereUniqueInput | Yes |
Update one ApiKey
// Update one ApiKey
const apiKey = await prisma.apiKey.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ApiKeyUpdateInput | ApiKeyUncheckedUpdateInput | Yes |
| where | ApiKeyWhereUniqueInput | Yes |
Delete zero or more ApiKey
// Delete a few ApiKey
const { count } = await prisma.apiKey.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApiKeyWhereInput | No |
Update zero or one ApiKey
const { count } = await prisma.apiKey.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ApiKeyUpdateManyMutationInput | ApiKeyUncheckedUpdateManyInput | Yes |
| where | ApiKeyWhereInput | No |
Create or update one ApiKey
// Update or create a ApiKey
const apiKey = await prisma.apiKey.upsert({
create: {
// ... data to create a ApiKey
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ApiKey we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ApiKeyWhereUniqueInput | Yes |
| create | ApiKeyCreateInput | ApiKeyUncheckedCreateInput | Yes |
| update | ApiKeyUpdateInput | ApiKeyUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| scope | String |
|
Yes | - |
| ApiKey | ApiKey[] |
|
Yes | - |
Find zero or one Scope
// Get one Scope
const scope = await prisma.scope.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ScopeWhereUniqueInput | Yes |
Find first Scope
// Get one Scope
const scope = await prisma.scope.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ScopeWhereInput | No |
| orderBy | ScopeOrderByWithRelationInput[] | ScopeOrderByWithRelationInput | No |
| cursor | ScopeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ScopeScalarFieldEnum | ScopeScalarFieldEnum[] | No |
Find zero or more Scope
// Get all Scope
const Scope = await prisma.scope.findMany()
// Get first 10 Scope
const Scope = await prisma.scope.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ScopeWhereInput | No |
| orderBy | ScopeOrderByWithRelationInput[] | ScopeOrderByWithRelationInput | No |
| cursor | ScopeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ScopeScalarFieldEnum | ScopeScalarFieldEnum[] | No |
Create one Scope
// Create one Scope
const Scope = await prisma.scope.create({
data: {
// ... data to create a Scope
}
})
| Name | Type | Required |
|---|---|---|
| data | ScopeCreateInput | ScopeUncheckedCreateInput | Yes |
Delete one Scope
// Delete one Scope
const Scope = await prisma.scope.delete({
where: {
// ... filter to delete one Scope
}
})
| Name | Type | Required |
|---|---|---|
| where | ScopeWhereUniqueInput | Yes |
Update one Scope
// Update one Scope
const scope = await prisma.scope.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ScopeUpdateInput | ScopeUncheckedUpdateInput | Yes |
| where | ScopeWhereUniqueInput | Yes |
Delete zero or more Scope
// Delete a few Scope
const { count } = await prisma.scope.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ScopeWhereInput | No |
Update zero or one Scope
const { count } = await prisma.scope.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ScopeUpdateManyMutationInput | ScopeUncheckedUpdateManyInput | Yes |
| where | ScopeWhereInput | No |
Create or update one Scope
// Update or create a Scope
const scope = await prisma.scope.upsert({
create: {
// ... data to create a Scope
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Scope we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ScopeWhereUniqueInput | Yes |
| create | ScopeCreateInput | ScopeUncheckedCreateInput | Yes |
| update | ScopeUpdateInput | ScopeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| tokenId | String? |
|
No | - |
| type | TokenType |
|
Yes | - |
| emailToken | String? |
|
No | - |
| valid | Boolean |
|
Yes | - |
| expiration | DateTime |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
Find zero or one Token
// Get one Token
const token = await prisma.token.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TokenWhereUniqueInput | Yes |
Find first Token
// Get one Token
const token = await prisma.token.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TokenWhereInput | No |
| orderBy | TokenOrderByWithRelationInput[] | TokenOrderByWithRelationInput | No |
| cursor | TokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TokenScalarFieldEnum | TokenScalarFieldEnum[] | No |
Find zero or more Token
// Get all Token
const Token = await prisma.token.findMany()
// Get first 10 Token
const Token = await prisma.token.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TokenWhereInput | No |
| orderBy | TokenOrderByWithRelationInput[] | TokenOrderByWithRelationInput | No |
| cursor | TokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TokenScalarFieldEnum | TokenScalarFieldEnum[] | No |
Create one Token
// Create one Token
const Token = await prisma.token.create({
data: {
// ... data to create a Token
}
})
| Name | Type | Required |
|---|---|---|
| data | TokenCreateInput | TokenUncheckedCreateInput | Yes |
Delete one Token
// Delete one Token
const Token = await prisma.token.delete({
where: {
// ... filter to delete one Token
}
})
| Name | Type | Required |
|---|---|---|
| where | TokenWhereUniqueInput | Yes |
Update one Token
// Update one Token
const token = await prisma.token.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TokenUpdateInput | TokenUncheckedUpdateInput | Yes |
| where | TokenWhereUniqueInput | Yes |
Delete zero or more Token
// Delete a few Token
const { count } = await prisma.token.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TokenWhereInput | No |
Update zero or one Token
const { count } = await prisma.token.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TokenUpdateManyMutationInput | TokenUncheckedUpdateManyInput | Yes |
| where | TokenWhereInput | No |
Create or update one Token
// Update or create a Token
const token = await prisma.token.upsert({
create: {
// ... data to create a Token
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Token we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TokenWhereUniqueInput | Yes |
| create | TokenCreateInput | TokenUncheckedCreateInput | Yes |
| update | TokenUpdateInput | TokenUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean |
|
Yes | - |
| isPublic | Boolean |
|
Yes | - |
| isDeleted | Int |
|
Yes | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| doneAt | DateTime |
|
Yes | - |
| modifiedBy | User |
|
Yes | - |
| modifiedById | String |
|
Yes | - |
| modelName | String |
|
Yes | - |
| recordId | String |
|
Yes | - |
| operation | String |
|
Yes | - |
| newData | Json |
|
Yes | - |
| oldData | Json |
|
Yes | - |
Find zero or one ChangesTracking
// Get one ChangesTracking
const changesTracking = await prisma.changesTracking.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChangesTrackingWhereUniqueInput | Yes |
Find first ChangesTracking
// Get one ChangesTracking
const changesTracking = await prisma.changesTracking.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChangesTrackingWhereInput | No |
| orderBy | ChangesTrackingOrderByWithRelationInput[] | ChangesTrackingOrderByWithRelationInput | No |
| cursor | ChangesTrackingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChangesTrackingScalarFieldEnum | ChangesTrackingScalarFieldEnum[] | No |
Find zero or more ChangesTracking
// Get all ChangesTracking
const ChangesTracking = await prisma.changesTracking.findMany()
// Get first 10 ChangesTracking
const ChangesTracking = await prisma.changesTracking.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChangesTrackingWhereInput | No |
| orderBy | ChangesTrackingOrderByWithRelationInput[] | ChangesTrackingOrderByWithRelationInput | No |
| cursor | ChangesTrackingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChangesTrackingScalarFieldEnum | ChangesTrackingScalarFieldEnum[] | No |
Create one ChangesTracking
// Create one ChangesTracking
const ChangesTracking = await prisma.changesTracking.create({
data: {
// ... data to create a ChangesTracking
}
})
| Name | Type | Required |
|---|---|---|
| data | ChangesTrackingCreateInput | ChangesTrackingUncheckedCreateInput | Yes |
Delete one ChangesTracking
// Delete one ChangesTracking
const ChangesTracking = await prisma.changesTracking.delete({
where: {
// ... filter to delete one ChangesTracking
}
})
| Name | Type | Required |
|---|---|---|
| where | ChangesTrackingWhereUniqueInput | Yes |
Update one ChangesTracking
// Update one ChangesTracking
const changesTracking = await prisma.changesTracking.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChangesTrackingUpdateInput | ChangesTrackingUncheckedUpdateInput | Yes |
| where | ChangesTrackingWhereUniqueInput | Yes |
Delete zero or more ChangesTracking
// Delete a few ChangesTracking
const { count } = await prisma.changesTracking.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChangesTrackingWhereInput | No |
Update zero or one ChangesTracking
const { count } = await prisma.changesTracking.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChangesTrackingUpdateManyMutationInput | ChangesTrackingUncheckedUpdateManyInput | Yes |
| where | ChangesTrackingWhereInput | No |
Create or update one ChangesTracking
// Update or create a ChangesTracking
const changesTracking = await prisma.changesTracking.upsert({
create: {
// ... data to create a ChangesTracking
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ChangesTracking we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChangesTrackingWhereUniqueInput | Yes |
| create | ChangesTrackingCreateInput | ChangesTrackingUncheckedCreateInput | Yes |
| update | ChangesTrackingUpdateInput | ChangesTrackingUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| numSeq | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| published | Boolean? |
|
No | - |
| isPublic | Boolean? |
|
No | - |
| isDeleted | Int? |
|
No | @omit |
| isDeletedDT | DateTime? |
|
No | - |
| isValidated | Boolean |
|
Yes | - |
| emailToken | String |
|
Yes | - |
| timeStamp | DateTime |
|
Yes | - |
Find zero or one AccountValidation
// Get one AccountValidation
const accountValidation = await prisma.accountValidation.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountValidationWhereUniqueInput | Yes |
Find first AccountValidation
// Get one AccountValidation
const accountValidation = await prisma.accountValidation.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountValidationWhereInput | No |
| orderBy | AccountValidationOrderByWithRelationInput[] | AccountValidationOrderByWithRelationInput | No |
| cursor | AccountValidationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountValidationScalarFieldEnum | AccountValidationScalarFieldEnum[] | No |
Find zero or more AccountValidation
// Get all AccountValidation
const AccountValidation = await prisma.accountValidation.findMany()
// Get first 10 AccountValidation
const AccountValidation = await prisma.accountValidation.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AccountValidationWhereInput | No |
| orderBy | AccountValidationOrderByWithRelationInput[] | AccountValidationOrderByWithRelationInput | No |
| cursor | AccountValidationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountValidationScalarFieldEnum | AccountValidationScalarFieldEnum[] | No |
Create one AccountValidation
// Create one AccountValidation
const AccountValidation = await prisma.accountValidation.create({
data: {
// ... data to create a AccountValidation
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountValidationCreateInput | AccountValidationUncheckedCreateInput | Yes |
Delete one AccountValidation
// Delete one AccountValidation
const AccountValidation = await prisma.accountValidation.delete({
where: {
// ... filter to delete one AccountValidation
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountValidationWhereUniqueInput | Yes |
Update one AccountValidation
// Update one AccountValidation
const accountValidation = await prisma.accountValidation.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountValidationUpdateInput | AccountValidationUncheckedUpdateInput | Yes |
| where | AccountValidationWhereUniqueInput | Yes |
Delete zero or more AccountValidation
// Delete a few AccountValidation
const { count } = await prisma.accountValidation.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountValidationWhereInput | No |
Update zero or one AccountValidation
const { count } = await prisma.accountValidation.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountValidationUpdateManyMutationInput | AccountValidationUncheckedUpdateManyInput | Yes |
| where | AccountValidationWhereInput | No |
Create or update one AccountValidation
// Update or create a AccountValidation
const accountValidation = await prisma.accountValidation.upsert({
create: {
// ... data to create a AccountValidation
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the AccountValidation we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountValidationWhereUniqueInput | Yes |
| create | AccountValidationCreateInput | AccountValidationUncheckedCreateInput | Yes |
| update | AccountValidationUpdateInput | AccountValidationUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| address | SortOrder | SortOrderInput | No |
| emailITAdmin | SortOrder | No |
| webSite | SortOrder | SortOrderInput | No |
| mainOrgId | SortOrder | SortOrderInput | No |
| OrgEmails | OrgEmailOrderByRelationAggregateInput | No |
| OrgDomains | OrgDomainOrderByRelationAggregateInput | No |
| mainOrg | OrganizationOrderByWithRelationInput | No |
| OrgEntity | OrganizationOrderByRelationAggregateInput | No |
| Members | UserOrderByRelationAggregateInput | No |
| Posts | PostOrderByRelationAggregateInput | No |
| Groups | GroupOrderByRelationAggregateInput | No |
| Files | FileOrderByRelationAggregateInput | No |
| Tasks | TaskOrderByRelationAggregateInput | No |
| Todos | TodoOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| address | SortOrder | SortOrderInput | No |
| emailITAdmin | SortOrder | No |
| webSite | SortOrder | SortOrderInput | No |
| mainOrgId | SortOrder | SortOrderInput | No |
| _count | OrganizationCountOrderByAggregateInput | No |
| _avg | OrganizationAvgOrderByAggregateInput | No |
| _max | OrganizationMaxOrderByAggregateInput | No |
| _min | OrganizationMinOrderByAggregateInput | No |
| _sum | OrganizationSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgEmailWhereInput | OrgEmailWhereInput[] | No |
| OR | OrgEmailWhereInput[] | No |
| NOT | OrgEmailWhereInput | OrgEmailWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| StringFilter | String | No | |
| description | StringNullableFilter | String | Null | Yes |
| orgId | StringFilter | String | No |
| org | OrganizationNullableRelationFilter | OrganizationWhereInput | Null | Yes |
| OrgEmailUseTos | OrgEmailUseToListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| SortOrder | No | |
| description | SortOrder | SortOrderInput | No |
| orgId | SortOrder | No |
| org | OrganizationOrderByWithRelationInput | No |
| OrgEmailUseTos | OrgEmailUseToOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | OrgEmailWhereInput | OrgEmailWhereInput[] | No |
| OR | OrgEmailWhereInput[] | No |
| NOT | OrgEmailWhereInput | OrgEmailWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| StringFilter | String | No | |
| description | StringNullableFilter | String | Null | Yes |
| orgId | StringFilter | String | No |
| org | OrganizationNullableRelationFilter | OrganizationWhereInput | Null | Yes |
| OrgEmailUseTos | OrgEmailUseToListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| SortOrder | No | |
| description | SortOrder | SortOrderInput | No |
| orgId | SortOrder | No |
| _count | OrgEmailCountOrderByAggregateInput | No |
| _avg | OrgEmailAvgOrderByAggregateInput | No |
| _max | OrgEmailMaxOrderByAggregateInput | No |
| _min | OrgEmailMinOrderByAggregateInput | No |
| _sum | OrgEmailSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgEmailScalarWhereWithAggregatesInput | OrgEmailScalarWhereWithAggregatesInput[] | No |
| OR | OrgEmailScalarWhereWithAggregatesInput[] | No |
| NOT | OrgEmailScalarWhereWithAggregatesInput | OrgEmailScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| StringWithAggregatesFilter | String | No | |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| orgId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgDomainWhereInput | OrgDomainWhereInput[] | No |
| OR | OrgDomainWhereInput[] | No |
| NOT | OrgDomainWhereInput | OrgDomainWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| domainName | StringFilter | String | No |
| extension | StringFilter | String | No |
| orgId | StringFilter | String | No |
| org | OrganizationNullableRelationFilter | OrganizationWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| domainName | SortOrder | No |
| extension | SortOrder | No |
| orgId | SortOrder | No |
| org | OrganizationOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | OrgDomainWhereInput | OrgDomainWhereInput[] | No |
| OR | OrgDomainWhereInput[] | No |
| NOT | OrgDomainWhereInput | OrgDomainWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| domainName | StringFilter | String | No |
| extension | StringFilter | String | No |
| orgId | StringFilter | String | No |
| org | OrganizationNullableRelationFilter | OrganizationWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| domainName | SortOrder | No |
| extension | SortOrder | No |
| orgId | SortOrder | No |
| _count | OrgDomainCountOrderByAggregateInput | No |
| _avg | OrgDomainAvgOrderByAggregateInput | No |
| _max | OrgDomainMaxOrderByAggregateInput | No |
| _min | OrgDomainMinOrderByAggregateInput | No |
| _sum | OrgDomainSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgDomainScalarWhereWithAggregatesInput | OrgDomainScalarWhereWithAggregatesInput[] | No |
| OR | OrgDomainScalarWhereWithAggregatesInput[] | No |
| NOT | OrgDomainScalarWhereWithAggregatesInput | OrgDomainScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| domainName | StringWithAggregatesFilter | String | No |
| extension | StringWithAggregatesFilter | String | No |
| orgId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserSecretWhereInput | UserSecretWhereInput[] | No |
| OR | UserSecretWhereInput[] | No |
| NOT | UserSecretWhereInput | UserSecretWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| userId | StringFilter | String | No |
| pwdHash | StringNullableFilter | String | Null | Yes |
| salt | StringNullableFilter | String | Null | Yes |
| isAdmin | BoolNullableFilter | Boolean | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| pwdHash | SortOrder | SortOrderInput | No |
| salt | SortOrder | SortOrderInput | No |
| isAdmin | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | String | No |
| AND | UserSecretWhereInput | UserSecretWhereInput[] | No |
| OR | UserSecretWhereInput[] | No |
| NOT | UserSecretWhereInput | UserSecretWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| pwdHash | StringNullableFilter | String | Null | Yes |
| salt | StringNullableFilter | String | Null | Yes |
| isAdmin | BoolNullableFilter | Boolean | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| pwdHash | SortOrder | SortOrderInput | No |
| salt | SortOrder | SortOrderInput | No |
| isAdmin | SortOrder | SortOrderInput | No |
| _count | UserSecretCountOrderByAggregateInput | No |
| _avg | UserSecretAvgOrderByAggregateInput | No |
| _max | UserSecretMaxOrderByAggregateInput | No |
| _min | UserSecretMinOrderByAggregateInput | No |
| _sum | UserSecretSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserSecretScalarWhereWithAggregatesInput | UserSecretScalarWhereWithAggregatesInput[] | No |
| OR | UserSecretScalarWhereWithAggregatesInput[] | No |
| NOT | UserSecretScalarWhereWithAggregatesInput | UserSecretScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| userId | StringWithAggregatesFilter | String | No |
| pwdHash | StringNullableWithAggregatesFilter | String | Null | Yes |
| salt | StringNullableWithAggregatesFilter | String | Null | Yes |
| isAdmin | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ProfileWhereInput | ProfileWhereInput[] | No |
| OR | ProfileWhereInput[] | No |
| NOT | ProfileWhereInput | ProfileWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderProfile | IntFilter | Int | No |
| bio | StringFilter | String | No |
| Users | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| orderProfile | SortOrder | No |
| bio | SortOrder | No |
| Users | UserOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ProfileWhereInput | ProfileWhereInput[] | No |
| OR | ProfileWhereInput[] | No |
| NOT | ProfileWhereInput | ProfileWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderProfile | IntFilter | Int | No |
| bio | StringFilter | String | No |
| Users | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| orderProfile | SortOrder | No |
| bio | SortOrder | No |
| _count | ProfileCountOrderByAggregateInput | No |
| _avg | ProfileAvgOrderByAggregateInput | No |
| _max | ProfileMaxOrderByAggregateInput | No |
| _min | ProfileMinOrderByAggregateInput | No |
| _sum | ProfileSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProfileScalarWhereWithAggregatesInput | ProfileScalarWhereWithAggregatesInput[] | No |
| OR | ProfileScalarWhereWithAggregatesInput[] | No |
| NOT | ProfileScalarWhereWithAggregatesInput | ProfileScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| orderProfile | IntWithAggregatesFilter | Int | No |
| bio | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GroupWhereInput | GroupWhereInput[] | No |
| OR | GroupWhereInput[] | No |
| NOT | GroupWhereInput | GroupWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderGroup | IntFilter | Int | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| isActiv | DateTimeNullableFilter | DateTime | Null | Yes |
| orgId | StringFilter | String | No |
| Users | UserListRelationFilter | No |
| Tasks | TaskListRelationFilter | No |
| Todos | TodoListRelationFilter | No |
| Posts | PostListRelationFilter | No |
| Files | FileListRelationFilter | No |
| org | OrganizationRelationFilter | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| orderGroup | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| isActiv | SortOrder | SortOrderInput | No |
| orgId | SortOrder | No |
| Users | UserOrderByRelationAggregateInput | No |
| Tasks | TaskOrderByRelationAggregateInput | No |
| Todos | TodoOrderByRelationAggregateInput | No |
| Posts | PostOrderByRelationAggregateInput | No |
| Files | FileOrderByRelationAggregateInput | No |
| org | OrganizationOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | GroupWhereInput | GroupWhereInput[] | No |
| OR | GroupWhereInput[] | No |
| NOT | GroupWhereInput | GroupWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderGroup | IntFilter | Int | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| isActiv | DateTimeNullableFilter | DateTime | Null | Yes |
| orgId | StringFilter | String | No |
| Users | UserListRelationFilter | No |
| Tasks | TaskListRelationFilter | No |
| Todos | TodoListRelationFilter | No |
| Posts | PostListRelationFilter | No |
| Files | FileListRelationFilter | No |
| org | OrganizationRelationFilter | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| orderGroup | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| isActiv | SortOrder | SortOrderInput | No |
| orgId | SortOrder | No |
| _count | GroupCountOrderByAggregateInput | No |
| _avg | GroupAvgOrderByAggregateInput | No |
| _max | GroupMaxOrderByAggregateInput | No |
| _min | GroupMinOrderByAggregateInput | No |
| _sum | GroupSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GroupScalarWhereWithAggregatesInput | GroupScalarWhereWithAggregatesInput[] | No |
| OR | GroupScalarWhereWithAggregatesInput[] | No |
| NOT | GroupScalarWhereWithAggregatesInput | GroupScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| orderGroup | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| isActiv | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| orgId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TodoWhereInput | TodoWhereInput[] | No |
| OR | TodoWhereInput[] | No |
| NOT | TodoWhereInput | TodoWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| orderTodo | IntFilter | Int | No |
| title | StringFilter | String | No |
| content | StringNullableFilter | String | Null | Yes |
| todoState | EnumTodoStateFilter | TodoState | No |
| mainTodoId | StringNullableFilter | String | Null | Yes |
| owner | UserRelationFilter | UserWhereInput | No |
| org | OrganizationRelationFilter | OrganizationWhereInput | No |
| groups | GroupListRelationFilter | No |
| mainTodo | TodoNullableRelationFilter | TodoWhereInput | Null | Yes |
| SubTodos | TodoListRelationFilter | No |
| Users | UserTodoLinkListRelationFilter | No |
| Tasks | TaskListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTodo | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| todoState | SortOrder | No |
| mainTodoId | SortOrder | SortOrderInput | No |
| owner | UserOrderByWithRelationInput | No |
| org | OrganizationOrderByWithRelationInput | No |
| groups | GroupOrderByRelationAggregateInput | No |
| mainTodo | TodoOrderByWithRelationInput | No |
| SubTodos | TodoOrderByRelationAggregateInput | No |
| Users | UserTodoLinkOrderByRelationAggregateInput | No |
| Tasks | TaskOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | TodoWhereInput | TodoWhereInput[] | No |
| OR | TodoWhereInput[] | No |
| NOT | TodoWhereInput | TodoWhereInput[] | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| orderTodo | IntFilter | Int | No |
| title | StringFilter | String | No |
| content | StringNullableFilter | String | Null | Yes |
| todoState | EnumTodoStateFilter | TodoState | No |
| mainTodoId | StringNullableFilter | String | Null | Yes |
| owner | UserRelationFilter | UserWhereInput | No |
| org | OrganizationRelationFilter | OrganizationWhereInput | No |
| groups | GroupListRelationFilter | No |
| mainTodo | TodoNullableRelationFilter | TodoWhereInput | Null | Yes |
| SubTodos | TodoListRelationFilter | No |
| Users | UserTodoLinkListRelationFilter | No |
| Tasks | TaskListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTodo | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| todoState | SortOrder | No |
| mainTodoId | SortOrder | SortOrderInput | No |
| _count | TodoCountOrderByAggregateInput | No |
| _avg | TodoAvgOrderByAggregateInput | No |
| _max | TodoMaxOrderByAggregateInput | No |
| _min | TodoMinOrderByAggregateInput | No |
| _sum | TodoSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TodoScalarWhereWithAggregatesInput | TodoScalarWhereWithAggregatesInput[] | No |
| OR | TodoScalarWhereWithAggregatesInput[] | No |
| NOT | TodoScalarWhereWithAggregatesInput | TodoScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| numSeq | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| ownerId | StringWithAggregatesFilter | String | No |
| orgId | StringWithAggregatesFilter | String | No |
| orderTodo | IntWithAggregatesFilter | Int | No |
| title | StringWithAggregatesFilter | String | No |
| content | StringNullableWithAggregatesFilter | String | Null | Yes |
| todoState | EnumTodoStateWithAggregatesFilter | TodoState | No |
| mainTodoId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | UserTodoLinkWhereInput | UserTodoLinkWhereInput[] | No |
| OR | UserTodoLinkWhereInput[] | No |
| NOT | UserTodoLinkWhereInput | UserTodoLinkWhereInput[] | No |
| userId | StringFilter | String | No |
| todoId | StringFilter | String | No |
| isAuthor | BoolFilter | Boolean | No |
| isAssigned | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| comment | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| todo | TodoRelationFilter | TodoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| todoId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| todo | TodoOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId_todoId | UserTodoLinkUserIdTodoIdCompoundUniqueInput | No |
| AND | UserTodoLinkWhereInput | UserTodoLinkWhereInput[] | No |
| OR | UserTodoLinkWhereInput[] | No |
| NOT | UserTodoLinkWhereInput | UserTodoLinkWhereInput[] | No |
| userId | StringFilter | String | No |
| todoId | StringFilter | String | No |
| isAuthor | BoolFilter | Boolean | No |
| isAssigned | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| comment | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| todo | TodoRelationFilter | TodoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| todoId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| _count | UserTodoLinkCountOrderByAggregateInput | No |
| _max | UserTodoLinkMaxOrderByAggregateInput | No |
| _min | UserTodoLinkMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserTodoLinkScalarWhereWithAggregatesInput | UserTodoLinkScalarWhereWithAggregatesInput[] | No |
| OR | UserTodoLinkScalarWhereWithAggregatesInput[] | No |
| NOT | UserTodoLinkScalarWhereWithAggregatesInput | UserTodoLinkScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| todoId | StringWithAggregatesFilter | String | No |
| isAuthor | BoolWithAggregatesFilter | Boolean | No |
| isAssigned | BoolWithAggregatesFilter | Boolean | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| comment | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTask | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| taskState | SortOrder | No |
| mainTaskId | SortOrder | SortOrderInput | No |
| todoId | SortOrder | SortOrderInput | No |
| owner | UserOrderByWithRelationInput | No |
| org | OrganizationOrderByWithRelationInput | No |
| groups | GroupOrderByRelationAggregateInput | No |
| mainTask | TaskOrderByWithRelationInput | No |
| SubTasks | TaskOrderByRelationAggregateInput | No |
| Users | UserTaskLinkOrderByRelationAggregateInput | No |
| todo | TodoOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTask | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| taskState | SortOrder | No |
| mainTaskId | SortOrder | SortOrderInput | No |
| todoId | SortOrder | SortOrderInput | No |
| _count | TaskCountOrderByAggregateInput | No |
| _avg | TaskAvgOrderByAggregateInput | No |
| _max | TaskMaxOrderByAggregateInput | No |
| _min | TaskMinOrderByAggregateInput | No |
| _sum | TaskSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserTaskLinkWhereInput | UserTaskLinkWhereInput[] | No |
| OR | UserTaskLinkWhereInput[] | No |
| NOT | UserTaskLinkWhereInput | UserTaskLinkWhereInput[] | No |
| userId | StringFilter | String | No |
| taskId | StringFilter | String | No |
| isAuthor | BoolFilter | Boolean | No |
| isAssigned | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| comment | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| task | TaskRelationFilter | TaskWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| taskId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| task | TaskOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId_taskId | UserTaskLinkUserIdTaskIdCompoundUniqueInput | No |
| AND | UserTaskLinkWhereInput | UserTaskLinkWhereInput[] | No |
| OR | UserTaskLinkWhereInput[] | No |
| NOT | UserTaskLinkWhereInput | UserTaskLinkWhereInput[] | No |
| userId | StringFilter | String | No |
| taskId | StringFilter | String | No |
| isAuthor | BoolFilter | Boolean | No |
| isAssigned | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| comment | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| task | TaskRelationFilter | TaskWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| taskId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| _count | UserTaskLinkCountOrderByAggregateInput | No |
| _max | UserTaskLinkMaxOrderByAggregateInput | No |
| _min | UserTaskLinkMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserTaskLinkScalarWhereWithAggregatesInput | UserTaskLinkScalarWhereWithAggregatesInput[] | No |
| OR | UserTaskLinkScalarWhereWithAggregatesInput[] | No |
| NOT | UserTaskLinkScalarWhereWithAggregatesInput | UserTaskLinkScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| taskId | StringWithAggregatesFilter | String | No |
| isAuthor | BoolWithAggregatesFilter | Boolean | No |
| isAssigned | BoolWithAggregatesFilter | Boolean | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| comment | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostWhereInput | PostWhereInput[] | No |
| OR | PostWhereInput[] | No |
| NOT | PostWhereInput | PostWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| orderPost | IntNullableFilter | Int | Null | Yes |
| title | StringFilter | String | No |
| content | StringNullableFilter | String | Null | Yes |
| owner | UserRelationFilter | UserWhereInput | No |
| org | OrganizationRelationFilter | OrganizationWhereInput | No |
| groups | GroupListRelationFilter | No |
| Categories | CategoryListRelationFilter | No |
| Comments | CommentListRelationFilter | No |
| LikedBys | PostLikeListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderPost | SortOrder | SortOrderInput | No |
| title | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| owner | UserOrderByWithRelationInput | No |
| org | OrganizationOrderByWithRelationInput | No |
| groups | GroupOrderByRelationAggregateInput | No |
| Categories | CategoryOrderByRelationAggregateInput | No |
| Comments | CommentOrderByRelationAggregateInput | No |
| LikedBys | PostLikeOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | PostWhereInput | PostWhereInput[] | No |
| OR | PostWhereInput[] | No |
| NOT | PostWhereInput | PostWhereInput[] | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| orderPost | IntNullableFilter | Int | Null | Yes |
| title | StringFilter | String | No |
| content | StringNullableFilter | String | Null | Yes |
| owner | UserRelationFilter | UserWhereInput | No |
| org | OrganizationRelationFilter | OrganizationWhereInput | No |
| groups | GroupListRelationFilter | No |
| Categories | CategoryListRelationFilter | No |
| Comments | CommentListRelationFilter | No |
| LikedBys | PostLikeListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderPost | SortOrder | SortOrderInput | No |
| title | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| _count | PostCountOrderByAggregateInput | No |
| _avg | PostAvgOrderByAggregateInput | No |
| _max | PostMaxOrderByAggregateInput | No |
| _min | PostMinOrderByAggregateInput | No |
| _sum | PostSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] | No |
| OR | PostScalarWhereWithAggregatesInput[] | No |
| NOT | PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| numSeq | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| ownerId | StringWithAggregatesFilter | String | No |
| orgId | StringWithAggregatesFilter | String | No |
| orderPost | IntNullableWithAggregatesFilter | Int | Null | Yes |
| title | StringWithAggregatesFilter | String | No |
| content | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderCategory | IntFilter | Int | No |
| name | StringFilter | String | No |
| Posts | PostListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| orderCategory | SortOrder | No |
| name | SortOrder | No |
| Posts | PostOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderCategory | IntFilter | Int | No |
| name | StringFilter | String | No |
| Posts | PostListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| orderCategory | SortOrder | No |
| name | SortOrder | No |
| _count | CategoryCountOrderByAggregateInput | No |
| _avg | CategoryAvgOrderByAggregateInput | No |
| _max | CategoryMaxOrderByAggregateInput | No |
| _min | CategoryMinOrderByAggregateInput | No |
| _sum | CategorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| OR | CategoryScalarWhereWithAggregatesInput[] | No |
| NOT | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| numSeq | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isPublic | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isDeleted | IntNullableWithAggregatesFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| orderCategory | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentWhereInput | CommentWhereInput[] | No |
| OR | CommentWhereInput[] | No |
| NOT | CommentWhereInput | CommentWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderComment | IntFilter | Int | No |
| content | StringNullableFilter | String | Null | Yes |
| postId | StringFilter | String | No |
| authorId | StringFilter | String | No |
| post | PostRelationFilter | PostWhereInput | No |
| author | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| orderComment | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| postId | SortOrder | No |
| authorId | SortOrder | No |
| post | PostOrderByWithRelationInput | No |
| author | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | CommentWhereInput | CommentWhereInput[] | No |
| OR | CommentWhereInput[] | No |
| NOT | CommentWhereInput | CommentWhereInput[] | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderComment | IntFilter | Int | No |
| content | StringNullableFilter | String | Null | Yes |
| postId | StringFilter | String | No |
| authorId | StringFilter | String | No |
| post | PostRelationFilter | PostWhereInput | No |
| author | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| orderComment | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| postId | SortOrder | No |
| authorId | SortOrder | No |
| _count | CommentCountOrderByAggregateInput | No |
| _avg | CommentAvgOrderByAggregateInput | No |
| _max | CommentMaxOrderByAggregateInput | No |
| _min | CommentMinOrderByAggregateInput | No |
| _sum | CommentSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentScalarWhereWithAggregatesInput | CommentScalarWhereWithAggregatesInput[] | No |
| OR | CommentScalarWhereWithAggregatesInput[] | No |
| NOT | CommentScalarWhereWithAggregatesInput | CommentScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| numSeq | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isPublic | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isDeleted | IntNullableWithAggregatesFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| orderComment | IntWithAggregatesFilter | Int | No |
| content | StringNullableWithAggregatesFilter | String | Null | Yes |
| postId | StringWithAggregatesFilter | String | No |
| authorId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FileWhereInput | FileWhereInput[] | No |
| OR | FileWhereInput[] | No |
| NOT | FileWhereInput | FileWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| name | StringFilter | String | No |
| storageName | StringFilter | String | No |
| type | StringNullableFilter | String | Null | Yes |
| data | StringNullableFilter | String | Null | Yes |
| size | IntNullableFilter | Int | Null | Yes |
| isArchived | DateTimeNullableFilter | DateTime | Null | Yes |
| owner | UserRelationFilter | UserWhereInput | No |
| org | OrganizationRelationFilter | OrganizationWhereInput | No |
| groups | GroupListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| name | SortOrder | No |
| storageName | SortOrder | No |
| type | SortOrder | SortOrderInput | No |
| data | SortOrder | SortOrderInput | No |
| size | SortOrder | SortOrderInput | No |
| isArchived | SortOrder | SortOrderInput | No |
| owner | UserOrderByWithRelationInput | No |
| org | OrganizationOrderByWithRelationInput | No |
| groups | GroupOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| storageName | String | No |
| AND | FileWhereInput | FileWhereInput[] | No |
| OR | FileWhereInput[] | No |
| NOT | FileWhereInput | FileWhereInput[] | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| name | StringFilter | String | No |
| type | StringNullableFilter | String | Null | Yes |
| data | StringNullableFilter | String | Null | Yes |
| size | IntNullableFilter | Int | Null | Yes |
| isArchived | DateTimeNullableFilter | DateTime | Null | Yes |
| owner | UserRelationFilter | UserWhereInput | No |
| org | OrganizationRelationFilter | OrganizationWhereInput | No |
| groups | GroupListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| name | SortOrder | No |
| storageName | SortOrder | No |
| type | SortOrder | SortOrderInput | No |
| data | SortOrder | SortOrderInput | No |
| size | SortOrder | SortOrderInput | No |
| isArchived | SortOrder | SortOrderInput | No |
| _count | FileCountOrderByAggregateInput | No |
| _avg | FileAvgOrderByAggregateInput | No |
| _max | FileMaxOrderByAggregateInput | No |
| _min | FileMinOrderByAggregateInput | No |
| _sum | FileSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserFollowerWhereInput | UserFollowerWhereInput[] | No |
| OR | UserFollowerWhereInput[] | No |
| NOT | UserFollowerWhereInput | UserFollowerWhereInput[] | No |
| user_id | StringFilter | String | No |
| follower_id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| follower | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| follower | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id_follower_id | UserFollowerUser_idFollower_idCompoundUniqueInput | No |
| AND | UserFollowerWhereInput | UserFollowerWhereInput[] | No |
| OR | UserFollowerWhereInput[] | No |
| NOT | UserFollowerWhereInput | UserFollowerWhereInput[] | No |
| user_id | StringFilter | String | No |
| follower_id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| follower | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | UserFollowerCountOrderByAggregateInput | No |
| _max | UserFollowerMaxOrderByAggregateInput | No |
| _min | UserFollowerMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserFollowerScalarWhereWithAggregatesInput | UserFollowerScalarWhereWithAggregatesInput[] | No |
| OR | UserFollowerScalarWhereWithAggregatesInput[] | No |
| NOT | UserFollowerScalarWhereWithAggregatesInput | UserFollowerScalarWhereWithAggregatesInput[] | No |
| user_id | StringWithAggregatesFilter | String | No |
| follower_id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostLikeWhereInput | PostLikeWhereInput[] | No |
| OR | PostLikeWhereInput[] | No |
| NOT | PostLikeWhereInput | PostLikeWhereInput[] | No |
| user_id | StringFilter | String | No |
| post_id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| post | PostRelationFilter | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| post_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| post | PostOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id_post_id | PostLikeUser_idPost_idCompoundUniqueInput | No |
| AND | PostLikeWhereInput | PostLikeWhereInput[] | No |
| OR | PostLikeWhereInput[] | No |
| NOT | PostLikeWhereInput | PostLikeWhereInput[] | No |
| user_id | StringFilter | String | No |
| post_id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| post | PostRelationFilter | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| post_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | PostLikeCountOrderByAggregateInput | No |
| _max | PostLikeMaxOrderByAggregateInput | No |
| _min | PostLikeMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostLikeScalarWhereWithAggregatesInput | PostLikeScalarWhereWithAggregatesInput[] | No |
| OR | PostLikeScalarWhereWithAggregatesInput[] | No |
| NOT | PostLikeScalarWhereWithAggregatesInput | PostLikeScalarWhereWithAggregatesInput[] | No |
| user_id | StringWithAggregatesFilter | String | No |
| post_id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | StoryWhereInput | StoryWhereInput[] | No |
| OR | StoryWhereInput[] | No |
| NOT | StoryWhereInput | StoryWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| caption | StringFilter | String | No |
| user_id | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| caption | SortOrder | No |
| user_id | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | StoryWhereInput | StoryWhereInput[] | No |
| OR | StoryWhereInput[] | No |
| NOT | StoryWhereInput | StoryWhereInput[] | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| caption | StringFilter | String | No |
| user_id | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| caption | SortOrder | No |
| user_id | SortOrder | No |
| _count | StoryCountOrderByAggregateInput | No |
| _avg | StoryAvgOrderByAggregateInput | No |
| _max | StoryMaxOrderByAggregateInput | No |
| _min | StoryMinOrderByAggregateInput | No |
| _sum | StorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | StoryScalarWhereWithAggregatesInput | StoryScalarWhereWithAggregatesInput[] | No |
| OR | StoryScalarWhereWithAggregatesInput[] | No |
| NOT | StoryScalarWhereWithAggregatesInput | StoryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| numSeq | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isPublic | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isDeleted | IntNullableWithAggregatesFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| caption | StringWithAggregatesFilter | String | No |
| user_id | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ImageWhereInput | ImageWhereInput[] | No |
| OR | ImageWhereInput[] | No |
| NOT | ImageWhereInput | ImageWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| type | StringFilter | String | No |
| url | StringFilter | String | No |
| associated_id | StringFilter | String | No |
| sequence | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| url | SortOrder | No |
| associated_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ImageWhereInput | ImageWhereInput[] | No |
| OR | ImageWhereInput[] | No |
| NOT | ImageWhereInput | ImageWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| type | StringFilter | String | No |
| url | StringFilter | String | No |
| associated_id | StringFilter | String | No |
| sequence | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| url | SortOrder | No |
| associated_id | SortOrder | No |
| sequence | SortOrder | No |
| _count | ImageCountOrderByAggregateInput | No |
| _avg | ImageAvgOrderByAggregateInput | No |
| _max | ImageMaxOrderByAggregateInput | No |
| _min | ImageMinOrderByAggregateInput | No |
| _sum | ImageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ImageScalarWhereWithAggregatesInput | ImageScalarWhereWithAggregatesInput[] | No |
| OR | ImageScalarWhereWithAggregatesInput[] | No |
| NOT | ImageScalarWhereWithAggregatesInput | ImageScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| type | StringWithAggregatesFilter | String | No |
| url | StringWithAggregatesFilter | String | No |
| associated_id | StringWithAggregatesFilter | String | No |
| sequence | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConfigParamWhereInput | ConfigParamWhereInput[] | No |
| OR | ConfigParamWhereInput[] | No |
| NOT | ConfigParamWhereInput | ConfigParamWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| name | StringFilter | String | No |
| value | StringFilter | String | No |
| utility | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| name | SortOrder | No |
| value | SortOrder | No |
| utility | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| AND | ConfigParamWhereInput | ConfigParamWhereInput[] | No |
| OR | ConfigParamWhereInput[] | No |
| NOT | ConfigParamWhereInput | ConfigParamWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| value | StringFilter | String | No |
| utility | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| name | SortOrder | No |
| value | SortOrder | No |
| utility | SortOrder | No |
| _count | ConfigParamCountOrderByAggregateInput | No |
| _avg | ConfigParamAvgOrderByAggregateInput | No |
| _max | ConfigParamMaxOrderByAggregateInput | No |
| _min | ConfigParamMinOrderByAggregateInput | No |
| _sum | ConfigParamSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConfigParamScalarWhereWithAggregatesInput | ConfigParamScalarWhereWithAggregatesInput[] | No |
| OR | ConfigParamScalarWhereWithAggregatesInput[] | No |
| NOT | ConfigParamScalarWhereWithAggregatesInput | ConfigParamScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| name | StringWithAggregatesFilter | String | No |
| value | StringWithAggregatesFilter | String | No |
| utility | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgEmailUseToWhereInput | OrgEmailUseToWhereInput[] | No |
| OR | OrgEmailUseToWhereInput[] | No |
| NOT | OrgEmailUseToWhereInput | OrgEmailUseToWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| useTo | StringFilter | String | No |
| isActiv | BoolFilter | Boolean | No |
| emailOrgId | IntFilter | Int | No |
| emailOrg | OrgEmailRelationFilter | OrgEmailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| useTo | SortOrder | No |
| isActiv | SortOrder | No |
| emailOrgId | SortOrder | No |
| emailOrg | OrgEmailOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | OrgEmailUseToWhereInput | OrgEmailUseToWhereInput[] | No |
| OR | OrgEmailUseToWhereInput[] | No |
| NOT | OrgEmailUseToWhereInput | OrgEmailUseToWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| useTo | StringFilter | String | No |
| isActiv | BoolFilter | Boolean | No |
| emailOrgId | IntFilter | Int | No |
| emailOrg | OrgEmailRelationFilter | OrgEmailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| useTo | SortOrder | No |
| isActiv | SortOrder | No |
| emailOrgId | SortOrder | No |
| _count | OrgEmailUseToCountOrderByAggregateInput | No |
| _avg | OrgEmailUseToAvgOrderByAggregateInput | No |
| _max | OrgEmailUseToMaxOrderByAggregateInput | No |
| _min | OrgEmailUseToMinOrderByAggregateInput | No |
| _sum | OrgEmailUseToSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgEmailUseToScalarWhereWithAggregatesInput | OrgEmailUseToScalarWhereWithAggregatesInput[] | No |
| OR | OrgEmailUseToScalarWhereWithAggregatesInput[] | No |
| NOT | OrgEmailUseToScalarWhereWithAggregatesInput | OrgEmailUseToScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| useTo | StringWithAggregatesFilter | String | No |
| isActiv | BoolWithAggregatesFilter | Boolean | No |
| emailOrgId | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AppEmailDomainWhereInput | AppEmailDomainWhereInput[] | No |
| OR | AppEmailDomainWhereInput[] | No |
| NOT | AppEmailDomainWhereInput | AppEmailDomainWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| domain | StringFilter | String | No |
| allowed | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| domain | SortOrder | No |
| allowed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| domain | String | No |
| AND | AppEmailDomainWhereInput | AppEmailDomainWhereInput[] | No |
| OR | AppEmailDomainWhereInput[] | No |
| NOT | AppEmailDomainWhereInput | AppEmailDomainWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| allowed | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| domain | SortOrder | No |
| allowed | SortOrder | No |
| _count | AppEmailDomainCountOrderByAggregateInput | No |
| _avg | AppEmailDomainAvgOrderByAggregateInput | No |
| _max | AppEmailDomainMaxOrderByAggregateInput | No |
| _min | AppEmailDomainMinOrderByAggregateInput | No |
| _sum | AppEmailDomainSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AppEmailDomainScalarWhereWithAggregatesInput | AppEmailDomainScalarWhereWithAggregatesInput[] | No |
| OR | AppEmailDomainScalarWhereWithAggregatesInput[] | No |
| NOT | AppEmailDomainScalarWhereWithAggregatesInput | AppEmailDomainScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| domain | StringWithAggregatesFilter | String | No |
| allowed | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RefreshTokenWhereInput | RefreshTokenWhereInput[] | No |
| OR | RefreshTokenWhereInput[] | No |
| NOT | RefreshTokenWhereInput | RefreshTokenWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| userId | StringFilter | String | No |
| tokenId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| tokenId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | String | No |
| tokenId | String | No |
| AND | RefreshTokenWhereInput | RefreshTokenWhereInput[] | No |
| OR | RefreshTokenWhereInput[] | No |
| NOT | RefreshTokenWhereInput | RefreshTokenWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| tokenId | SortOrder | No |
| _count | RefreshTokenCountOrderByAggregateInput | No |
| _avg | RefreshTokenAvgOrderByAggregateInput | No |
| _max | RefreshTokenMaxOrderByAggregateInput | No |
| _min | RefreshTokenMinOrderByAggregateInput | No |
| _sum | RefreshTokenSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RefreshTokenScalarWhereWithAggregatesInput | RefreshTokenScalarWhereWithAggregatesInput[] | No |
| OR | RefreshTokenScalarWhereWithAggregatesInput[] | No |
| NOT | RefreshTokenScalarWhereWithAggregatesInput | RefreshTokenScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| userId | StringWithAggregatesFilter | String | No |
| tokenId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ApiKeyWhereInput | ApiKeyWhereInput[] | No |
| OR | ApiKeyWhereInput[] | No |
| NOT | ApiKeyWhereInput | ApiKeyWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| key | StringFilter | String | No |
| uuid | StringFilter | String | No |
| userId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| Scopes | ScopeListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| key | SortOrder | No |
| uuid | SortOrder | No |
| userId | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Scopes | ScopeOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ApiKeyWhereInput | ApiKeyWhereInput[] | No |
| OR | ApiKeyWhereInput[] | No |
| NOT | ApiKeyWhereInput | ApiKeyWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| key | StringFilter | String | No |
| uuid | StringFilter | String | No |
| userId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| Scopes | ScopeListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| key | SortOrder | No |
| uuid | SortOrder | No |
| userId | SortOrder | No |
| _count | ApiKeyCountOrderByAggregateInput | No |
| _avg | ApiKeyAvgOrderByAggregateInput | No |
| _max | ApiKeyMaxOrderByAggregateInput | No |
| _min | ApiKeyMinOrderByAggregateInput | No |
| _sum | ApiKeySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ApiKeyScalarWhereWithAggregatesInput | ApiKeyScalarWhereWithAggregatesInput[] | No |
| OR | ApiKeyScalarWhereWithAggregatesInput[] | No |
| NOT | ApiKeyScalarWhereWithAggregatesInput | ApiKeyScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| key | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ScopeWhereInput | ScopeWhereInput[] | No |
| OR | ScopeWhereInput[] | No |
| NOT | ScopeWhereInput | ScopeWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| scope | StringFilter | String | No |
| ApiKey | ApiKeyListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| scope | SortOrder | No |
| ApiKey | ApiKeyOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ScopeWhereInput | ScopeWhereInput[] | No |
| OR | ScopeWhereInput[] | No |
| NOT | ScopeWhereInput | ScopeWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| scope | StringFilter | String | No |
| ApiKey | ApiKeyListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| scope | SortOrder | No |
| _count | ScopeCountOrderByAggregateInput | No |
| _avg | ScopeAvgOrderByAggregateInput | No |
| _max | ScopeMaxOrderByAggregateInput | No |
| _min | ScopeMinOrderByAggregateInput | No |
| _sum | ScopeSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ScopeScalarWhereWithAggregatesInput | ScopeScalarWhereWithAggregatesInput[] | No |
| OR | ScopeScalarWhereWithAggregatesInput[] | No |
| NOT | ScopeScalarWhereWithAggregatesInput | ScopeScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| scope | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TokenWhereInput | TokenWhereInput[] | No |
| OR | TokenWhereInput[] | No |
| NOT | TokenWhereInput | TokenWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| tokenId | StringNullableFilter | String | Null | Yes |
| type | EnumTokenTypeFilter | TokenType | No |
| emailToken | StringNullableFilter | String | Null | Yes |
| valid | BoolFilter | Boolean | No |
| expiration | DateTimeFilter | DateTime | No |
| userId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| tokenId | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| emailToken | SortOrder | SortOrderInput | No |
| valid | SortOrder | No |
| expiration | SortOrder | No |
| userId | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| tokenId | String | No |
| emailToken | String | No |
| AND | TokenWhereInput | TokenWhereInput[] | No |
| OR | TokenWhereInput[] | No |
| NOT | TokenWhereInput | TokenWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| type | EnumTokenTypeFilter | TokenType | No |
| valid | BoolFilter | Boolean | No |
| expiration | DateTimeFilter | DateTime | No |
| userId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| tokenId | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| emailToken | SortOrder | SortOrderInput | No |
| valid | SortOrder | No |
| expiration | SortOrder | No |
| userId | SortOrder | No |
| _count | TokenCountOrderByAggregateInput | No |
| _avg | TokenAvgOrderByAggregateInput | No |
| _max | TokenMaxOrderByAggregateInput | No |
| _min | TokenMinOrderByAggregateInput | No |
| _sum | TokenSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TokenScalarWhereWithAggregatesInput | TokenScalarWhereWithAggregatesInput[] | No |
| OR | TokenScalarWhereWithAggregatesInput[] | No |
| NOT | TokenScalarWhereWithAggregatesInput | TokenScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| tokenId | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | EnumTokenTypeWithAggregatesFilter | TokenType | No |
| emailToken | StringNullableWithAggregatesFilter | String | Null | Yes |
| valid | BoolWithAggregatesFilter | Boolean | No |
| expiration | DateTimeWithAggregatesFilter | DateTime | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChangesTrackingWhereInput | ChangesTrackingWhereInput[] | No |
| OR | ChangesTrackingWhereInput[] | No |
| NOT | ChangesTrackingWhereInput | ChangesTrackingWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| doneAt | DateTimeFilter | DateTime | No |
| modifiedById | StringFilter | String | No |
| modelName | StringFilter | String | No |
| recordId | StringFilter | String | No |
| operation | StringFilter | String | No |
| newData | JsonFilter | No |
| oldData | JsonFilter | No |
| modifiedBy | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| doneAt | SortOrder | No |
| modifiedById | SortOrder | No |
| modelName | SortOrder | No |
| recordId | SortOrder | No |
| operation | SortOrder | No |
| newData | SortOrder | No |
| oldData | SortOrder | No |
| modifiedBy | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ChangesTrackingWhereInput | ChangesTrackingWhereInput[] | No |
| OR | ChangesTrackingWhereInput[] | No |
| NOT | ChangesTrackingWhereInput | ChangesTrackingWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| doneAt | DateTimeFilter | DateTime | No |
| modifiedById | StringFilter | String | No |
| modelName | StringFilter | String | No |
| recordId | StringFilter | String | No |
| operation | StringFilter | String | No |
| newData | JsonFilter | No |
| oldData | JsonFilter | No |
| modifiedBy | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| doneAt | SortOrder | No |
| modifiedById | SortOrder | No |
| modelName | SortOrder | No |
| recordId | SortOrder | No |
| operation | SortOrder | No |
| newData | SortOrder | No |
| oldData | SortOrder | No |
| _count | ChangesTrackingCountOrderByAggregateInput | No |
| _avg | ChangesTrackingAvgOrderByAggregateInput | No |
| _max | ChangesTrackingMaxOrderByAggregateInput | No |
| _min | ChangesTrackingMinOrderByAggregateInput | No |
| _sum | ChangesTrackingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChangesTrackingScalarWhereWithAggregatesInput | ChangesTrackingScalarWhereWithAggregatesInput[] | No |
| OR | ChangesTrackingScalarWhereWithAggregatesInput[] | No |
| NOT | ChangesTrackingScalarWhereWithAggregatesInput | ChangesTrackingScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolWithAggregatesFilter | Boolean | No |
| isPublic | BoolWithAggregatesFilter | Boolean | No |
| isDeleted | IntWithAggregatesFilter | Int | No |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| doneAt | DateTimeWithAggregatesFilter | DateTime | No |
| modifiedById | StringWithAggregatesFilter | String | No |
| modelName | StringWithAggregatesFilter | String | No |
| recordId | StringWithAggregatesFilter | String | No |
| operation | StringWithAggregatesFilter | String | No |
| newData | JsonWithAggregatesFilter | No |
| oldData | JsonWithAggregatesFilter | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountValidationWhereInput | AccountValidationWhereInput[] | No |
| OR | AccountValidationWhereInput[] | No |
| NOT | AccountValidationWhereInput | AccountValidationWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isValidated | BoolFilter | Boolean | No |
| emailToken | StringFilter | String | No |
| timeStamp | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isValidated | SortOrder | No |
| emailToken | SortOrder | No |
| timeStamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| emailToken | String | No |
| AND | AccountValidationWhereInput | AccountValidationWhereInput[] | No |
| OR | AccountValidationWhereInput[] | No |
| NOT | AccountValidationWhereInput | AccountValidationWhereInput[] | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isValidated | BoolFilter | Boolean | No |
| timeStamp | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | SortOrderInput | No |
| isPublic | SortOrder | SortOrderInput | No |
| isDeleted | SortOrder | SortOrderInput | No |
| isDeletedDT | SortOrder | SortOrderInput | No |
| isValidated | SortOrder | No |
| emailToken | SortOrder | No |
| timeStamp | SortOrder | No |
| _count | AccountValidationCountOrderByAggregateInput | No |
| _avg | AccountValidationAvgOrderByAggregateInput | No |
| _max | AccountValidationMaxOrderByAggregateInput | No |
| _min | AccountValidationMinOrderByAggregateInput | No |
| _sum | AccountValidationSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountValidationScalarWhereWithAggregatesInput | AccountValidationScalarWhereWithAggregatesInput[] | No |
| OR | AccountValidationScalarWhereWithAggregatesInput[] | No |
| NOT | AccountValidationScalarWhereWithAggregatesInput | AccountValidationScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| numSeq | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| published | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isPublic | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isDeleted | IntNullableWithAggregatesFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| isValidated | BoolWithAggregatesFilter | Boolean | No |
| emailToken | StringWithAggregatesFilter | String | No |
| timeStamp | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | StringFieldUpdateOperationsInput | No |
| webSite | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | StringFieldUpdateOperationsInput | No |
| webSite | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mainOrgId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| description | String | Null | Yes |
| org | OrganizationCreateNestedOneWithoutOrgEmailsInput | No |
| OrgEmailUseTos | OrgEmailUseToCreateNestedManyWithoutEmailOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| description | String | Null | Yes |
| orgId | String | No |
| OrgEmailUseTos | OrgEmailUseToUncheckedCreateNestedManyWithoutEmailOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| org | OrganizationUpdateOneWithoutOrgEmailsNestedInput | No |
| OrgEmailUseTos | OrgEmailUseToUpdateManyWithoutEmailOrgNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| OrgEmailUseTos | OrgEmailUseToUncheckedUpdateManyWithoutEmailOrgNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| description | String | Null | Yes |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domainName | String | No |
| extension | String | No |
| org | OrganizationCreateNestedOneWithoutOrgDomainsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domainName | String | No |
| extension | String | No |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domainName | String | StringFieldUpdateOperationsInput | No |
| extension | String | StringFieldUpdateOperationsInput | No |
| org | OrganizationUpdateOneWithoutOrgDomainsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domainName | String | StringFieldUpdateOperationsInput | No |
| extension | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domainName | String | No |
| extension | String | No |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domainName | String | StringFieldUpdateOperationsInput | No |
| extension | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domainName | String | StringFieldUpdateOperationsInput | No |
| extension | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| lastName | String | Null | Yes |
| firstName | String | Null | Yes |
| title | Title | Null | Yes |
| nickName | String | Null | Yes |
| Gender | Gender | Null | Yes |
| social | NullableJsonNullValueInput | Json | No |
| Language | Language | Null | Yes |
| dob | DateTime | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| isValidated | DateTime | Null | Yes |
| isSuspended | DateTime | Null | Yes |
| managerId | String | Null | Yes |
| Roles | UserCreateRolesInput | Role[] | No |
| Permissions | UserCreatePermissionsInput | PermissionClaim[] | No |
| isTfaEnable | Boolean | No |
| tfaSecret | String | Null | Yes |
| passWordFaker | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| pwdHash | String | Null | Yes |
| salt | String | Null | Yes |
| isAdmin | Boolean | Null | Yes |
| user | UserCreateNestedOneWithoutUserSecretInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userId | String | No |
| pwdHash | String | Null | Yes |
| salt | String | Null | Yes |
| isAdmin | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| pwdHash | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| salt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isAdmin | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutUserSecretNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| pwdHash | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| salt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isAdmin | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userId | String | No |
| pwdHash | String | Null | Yes |
| salt | String | Null | Yes |
| isAdmin | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| pwdHash | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| salt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isAdmin | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| pwdHash | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| salt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isAdmin | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderProfile | Int | No |
| bio | String | No |
| Users | UserCreateNestedManyWithoutProfilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderProfile | Int | No |
| bio | String | No |
| Users | UserUncheckedCreateNestedManyWithoutProfilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderProfile | Int | IntFieldUpdateOperationsInput | No |
| bio | String | StringFieldUpdateOperationsInput | No |
| Users | UserUpdateManyWithoutProfilesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderProfile | Int | IntFieldUpdateOperationsInput | No |
| bio | String | StringFieldUpdateOperationsInput | No |
| Users | UserUncheckedUpdateManyWithoutProfilesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderProfile | Int | No |
| bio | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderProfile | Int | IntFieldUpdateOperationsInput | No |
| bio | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderProfile | Int | IntFieldUpdateOperationsInput | No |
| bio | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Users | UserCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoCreateNestedManyWithoutGroupsInput | No |
| Posts | PostCreateNestedManyWithoutGroupsInput | No |
| Files | FileCreateNestedManyWithoutGroupsInput | No |
| org | OrganizationCreateNestedOneWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| orgId | String | No |
| Users | UserUncheckedCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutGroupsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutGroupsInput | No |
| Files | FileUncheckedCreateNestedManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Users | UserUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUpdateManyWithoutGroupsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Users | UserUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| owner | UserCreateNestedOneWithoutTodosAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTodosInput | No |
| groups | GroupCreateNestedManyWithoutTodosInput | No |
| mainTodo | TodoCreateNestedOneWithoutSubTodosInput | No |
| SubTodos | TodoCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTodosInput | No |
| SubTodos | TodoUncheckedCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkUncheckedCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderTodo | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoState | TodoState | EnumTodoStateFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTodo | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoState | TodoState | EnumTodoStateFieldUpdateOperationsInput | No |
| mainTodoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| user | UserCreateNestedOneWithoutTodoInput | No |
| todo | TodoCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| todoId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutTodoNestedInput | No |
| todo | TodoUpdateOneRequiredWithoutUsersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| todoId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| todoId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| todoId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| owner | UserCreateNestedOneWithoutTasksAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTasksInput | No |
| groups | GroupCreateNestedManyWithoutTasksInput | No |
| mainTask | TaskCreateNestedOneWithoutSubTasksInput | No |
| SubTasks | TaskCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkCreateNestedManyWithoutTaskInput | No |
| todo | TodoCreateNestedOneWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTasksInput | No |
| SubTasks | TaskUncheckedCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkUncheckedCreateNestedManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderTask | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| taskState | TaskState | EnumTaskStateFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTask | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| taskState | TaskState | EnumTaskStateFieldUpdateOperationsInput | No |
| mainTaskId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| user | UserCreateNestedOneWithoutTasksInput | No |
| task | TaskCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| taskId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutTasksNestedInput | No |
| task | TaskUpdateOneRequiredWithoutUsersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| taskId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| taskId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| taskId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| owner | UserCreateNestedOneWithoutPostsInput | No |
| org | OrganizationCreateNestedOneWithoutPostsInput | No |
| groups | GroupCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryCreateNestedManyWithoutPostsInput | No |
| Comments | CommentCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryUncheckedCreateNestedManyWithoutPostsInput | No |
| Comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| owner | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutPostsNestedInput | No |
| groups | GroupUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groups | GroupUncheckedUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUncheckedUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUncheckedUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderCategory | Int | No |
| name | String | No |
| Posts | PostCreateNestedManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderCategory | Int | No |
| name | String | No |
| Posts | PostUncheckedCreateNestedManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderCategory | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Posts | PostUpdateManyWithoutCategoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderCategory | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Posts | PostUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderCategory | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderCategory | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderCategory | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| post | PostCreateNestedOneWithoutCommentsInput | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| postId | String | No |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| post | PostUpdateOneRequiredWithoutCommentsNestedInput | No |
| author | UserUpdateOneRequiredWithoutCommentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| postId | String | No |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| owner | UserCreateNestedOneWithoutFilesInput | No |
| org | OrganizationCreateNestedOneWithoutFilesInput | No |
| groups | GroupCreateNestedManyWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutFollowersInput | No |
| follower | UserCreateNestedOneWithoutFollowingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| follower_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutFollowersNestedInput | No |
| follower | UserUpdateOneRequiredWithoutFollowingsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| follower_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutPosts_likedInput | No |
| post | PostCreateNestedOneWithoutLikedBysInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| post_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutPosts_likedNestedInput | No |
| post | PostUpdateOneRequiredWithoutLikedBysNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | StringFieldUpdateOperationsInput | No |
| post_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| post_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | StringFieldUpdateOperationsInput | No |
| post_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| caption | String | No |
| user | UserCreateNestedOneWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| caption | String | No |
| user_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| caption | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutStoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| caption | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| caption | String | No |
| user_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| caption | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| caption | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| type | String | No |
| url | String | No |
| associated_id | String | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| type | String | No |
| url | String | No |
| associated_id | String | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| associated_id | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| associated_id | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| type | String | No |
| url | String | No |
| associated_id | String | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| associated_id | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| associated_id | String | StringFieldUpdateOperationsInput | No |
| sequence | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| value | String | No |
| utility | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| value | String | No |
| utility | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| utility | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| utility | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| value | String | No |
| utility | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| utility | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| utility | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| useTo | String | No |
| isActiv | Boolean | No |
| emailOrg | OrgEmailCreateNestedOneWithoutOrgEmailUseTosInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| useTo | String | No |
| isActiv | Boolean | No |
| emailOrgId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| useTo | String | StringFieldUpdateOperationsInput | No |
| isActiv | Boolean | BoolFieldUpdateOperationsInput | No |
| emailOrg | OrgEmailUpdateOneRequiredWithoutOrgEmailUseTosNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| useTo | String | StringFieldUpdateOperationsInput | No |
| isActiv | Boolean | BoolFieldUpdateOperationsInput | No |
| emailOrgId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| useTo | String | No |
| isActiv | Boolean | No |
| emailOrgId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| useTo | String | StringFieldUpdateOperationsInput | No |
| isActiv | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| useTo | String | StringFieldUpdateOperationsInput | No |
| isActiv | Boolean | BoolFieldUpdateOperationsInput | No |
| emailOrgId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domain | String | No |
| allowed | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domain | String | No |
| allowed | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domain | String | StringFieldUpdateOperationsInput | No |
| allowed | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domain | String | StringFieldUpdateOperationsInput | No |
| allowed | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domain | String | No |
| allowed | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domain | String | StringFieldUpdateOperationsInput | No |
| allowed | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domain | String | StringFieldUpdateOperationsInput | No |
| allowed | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| userId | String | No |
| tokenId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| userId | String | No |
| tokenId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| tokenId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| tokenId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| userId | String | No |
| tokenId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| tokenId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| tokenId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| key | String | No |
| uuid | String | No |
| user | UserCreateNestedOneWithoutApiKeysInput | No |
| Scopes | ScopeCreateNestedManyWithoutApiKeyInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| key | String | No |
| uuid | String | No |
| userId | String | No |
| Scopes | ScopeUncheckedCreateNestedManyWithoutApiKeyInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutApiKeysNestedInput | No |
| Scopes | ScopeUpdateManyWithoutApiKeyNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Scopes | ScopeUncheckedUpdateManyWithoutApiKeyNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| key | String | No |
| uuid | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| scope | String | No |
| ApiKey | ApiKeyCreateNestedManyWithoutScopesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| scope | String | No |
| ApiKey | ApiKeyUncheckedCreateNestedManyWithoutScopesInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | StringFieldUpdateOperationsInput | No |
| ApiKey | ApiKeyUpdateManyWithoutScopesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | StringFieldUpdateOperationsInput | No |
| ApiKey | ApiKeyUncheckedUpdateManyWithoutScopesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| scope | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| tokenId | String | Null | Yes |
| type | TokenType | No |
| emailToken | String | Null | Yes |
| valid | Boolean | No |
| expiration | DateTime | No |
| user | UserCreateNestedOneWithoutTokensInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| tokenId | String | Null | Yes |
| type | TokenType | No |
| emailToken | String | Null | Yes |
| valid | Boolean | No |
| expiration | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| tokenId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
| emailToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| valid | Boolean | BoolFieldUpdateOperationsInput | No |
| expiration | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutTokensNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| tokenId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
| emailToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| valid | Boolean | BoolFieldUpdateOperationsInput | No |
| expiration | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| tokenId | String | Null | Yes |
| type | TokenType | No |
| emailToken | String | Null | Yes |
| valid | Boolean | No |
| expiration | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| tokenId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
| emailToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| valid | Boolean | BoolFieldUpdateOperationsInput | No |
| expiration | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| tokenId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
| emailToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| valid | Boolean | BoolFieldUpdateOperationsInput | No |
| expiration | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| doneAt | DateTime | No |
| modelName | String | No |
| recordId | String | No |
| operation | String | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| modifiedBy | UserCreateNestedOneWithoutChangesLogsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| doneAt | DateTime | No |
| modifiedById | String | No |
| modelName | String | No |
| recordId | String | No |
| operation | String | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| doneAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| modelName | String | StringFieldUpdateOperationsInput | No |
| recordId | String | StringFieldUpdateOperationsInput | No |
| operation | String | StringFieldUpdateOperationsInput | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| modifiedBy | UserUpdateOneRequiredWithoutChangesLogsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| doneAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| modifiedById | String | StringFieldUpdateOperationsInput | No |
| modelName | String | StringFieldUpdateOperationsInput | No |
| recordId | String | StringFieldUpdateOperationsInput | No |
| operation | String | StringFieldUpdateOperationsInput | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| doneAt | DateTime | No |
| modifiedById | String | No |
| modelName | String | No |
| recordId | String | No |
| operation | String | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| doneAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| modelName | String | StringFieldUpdateOperationsInput | No |
| recordId | String | StringFieldUpdateOperationsInput | No |
| operation | String | StringFieldUpdateOperationsInput | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| doneAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| modifiedById | String | StringFieldUpdateOperationsInput | No |
| modelName | String | StringFieldUpdateOperationsInput | No |
| recordId | String | StringFieldUpdateOperationsInput | No |
| operation | String | StringFieldUpdateOperationsInput | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| isValidated | Boolean | No |
| emailToken | String | No |
| timeStamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| isValidated | Boolean | No |
| emailToken | String | No |
| timeStamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isValidated | Boolean | BoolFieldUpdateOperationsInput | No |
| emailToken | String | StringFieldUpdateOperationsInput | No |
| timeStamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isValidated | Boolean | BoolFieldUpdateOperationsInput | No |
| emailToken | String | StringFieldUpdateOperationsInput | No |
| timeStamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| isValidated | Boolean | No |
| emailToken | String | No |
| timeStamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isValidated | Boolean | BoolFieldUpdateOperationsInput | No |
| emailToken | String | StringFieldUpdateOperationsInput | No |
| timeStamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isValidated | Boolean | BoolFieldUpdateOperationsInput | No |
| emailToken | String | StringFieldUpdateOperationsInput | No |
| timeStamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | OrgEmailWhereInput | No |
| some | OrgEmailWhereInput | No |
| none | OrgEmailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | OrgDomainWhereInput | No |
| some | OrgDomainWhereInput | No |
| none | OrgDomainWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrganizationWhereInput | Null | Yes |
| isNot | OrganizationWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | OrganizationWhereInput | No |
| some | OrganizationWhereInput | No |
| none | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserWhereInput | No |
| some | UserWhereInput | No |
| none | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PostWhereInput | No |
| some | PostWhereInput | No |
| none | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | GroupWhereInput | No |
| some | GroupWhereInput | No |
| none | GroupWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FileWhereInput | No |
| some | FileWhereInput | No |
| none | FileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TaskWhereInput | No |
| some | TaskWhereInput | No |
| none | TaskWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TodoWhereInput | No |
| some | TodoWhereInput | No |
| none | TodoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| address | SortOrder | No |
| emailITAdmin | SortOrder | No |
| webSite | SortOrder | No |
| mainOrgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| emailITAdmin | SortOrder | No |
| webSite | SortOrder | No |
| mainOrgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| emailITAdmin | SortOrder | No |
| webSite | SortOrder | No |
| mainOrgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| _count | NestedIntNullableFilter | No |
| _min | NestedJsonNullableFilter | No |
| _max | NestedJsonNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | OrgEmailUseToWhereInput | No |
| some | OrgEmailUseToWhereInput | No |
| none | OrgEmailUseToWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| SortOrder | No | |
| description | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| SortOrder | No | |
| description | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| SortOrder | No | |
| description | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| domainName | SortOrder | No |
| extension | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| domainName | SortOrder | No |
| extension | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| domainName | SortOrder | No |
| extension | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Title | EnumTitleFieldRefInput | Null | Yes |
| in | Title[] | ListEnumTitleFieldRefInput | Null | Yes |
| notIn | Title[] | ListEnumTitleFieldRefInput | Null | Yes |
| not | Title | NestedEnumTitleNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Language | EnumLanguageFieldRefInput | Null | Yes |
| in | Language[] | ListEnumLanguageFieldRefInput | Null | Yes |
| notIn | Language[] | ListEnumLanguageFieldRefInput | Null | Yes |
| not | Language | NestedEnumLanguageNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Role[] | ListEnumRoleFieldRefInput | Null | Yes |
| has | Role | EnumRoleFieldRefInput | Null | Yes |
| hasEvery | Role[] | ListEnumRoleFieldRefInput | No |
| hasSome | Role[] | ListEnumRoleFieldRefInput | No |
| isEmpty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PermissionClaim[] | ListEnumPermissionClaimFieldRefInput | Null | Yes |
| has | PermissionClaim | EnumPermissionClaimFieldRefInput | Null | Yes |
| hasEvery | PermissionClaim[] | ListEnumPermissionClaimFieldRefInput | No |
| hasSome | PermissionClaim[] | ListEnumPermissionClaimFieldRefInput | No |
| isEmpty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | Null | Yes |
| isNot | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | ProfileWhereInput | No |
| some | ProfileWhereInput | No |
| none | ProfileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CommentWhereInput | No |
| some | CommentWhereInput | No |
| none | CommentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | StoryWhereInput | No |
| some | StoryWhereInput | No |
| none | StoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserTodoLinkWhereInput | No |
| some | UserTodoLinkWhereInput | No |
| none | UserTodoLinkWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserTaskLinkWhereInput | No |
| some | UserTaskLinkWhereInput | No |
| none | UserTaskLinkWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChangesTrackingWhereInput | No |
| some | ChangesTrackingWhereInput | No |
| none | ChangesTrackingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TokenWhereInput | No |
| some | TokenWhereInput | No |
| none | TokenWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ApiKeyWhereInput | No |
| some | ApiKeyWhereInput | No |
| none | ApiKeyWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserSecretWhereInput | Null | Yes |
| isNot | UserSecretWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | UserFollowerWhereInput | No |
| some | UserFollowerWhereInput | No |
| none | UserFollowerWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PostLikeWhereInput | No |
| some | PostLikeWhereInput | No |
| none | PostLikeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| SortOrder | No | |
| lastName | SortOrder | No |
| firstName | SortOrder | No |
| title | SortOrder | No |
| nickName | SortOrder | No |
| Gender | SortOrder | No |
| social | SortOrder | No |
| Language | SortOrder | No |
| dob | SortOrder | No |
| address | SortOrder | No |
| isValidated | SortOrder | No |
| isSuspended | SortOrder | No |
| managerId | SortOrder | No |
| Roles | SortOrder | No |
| Permissions | SortOrder | No |
| isTfaEnable | SortOrder | No |
| tfaSecret | SortOrder | No |
| passWordFaker | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| SortOrder | No | |
| lastName | SortOrder | No |
| firstName | SortOrder | No |
| title | SortOrder | No |
| nickName | SortOrder | No |
| Gender | SortOrder | No |
| Language | SortOrder | No |
| dob | SortOrder | No |
| isValidated | SortOrder | No |
| isSuspended | SortOrder | No |
| managerId | SortOrder | No |
| isTfaEnable | SortOrder | No |
| tfaSecret | SortOrder | No |
| passWordFaker | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| SortOrder | No | |
| lastName | SortOrder | No |
| firstName | SortOrder | No |
| title | SortOrder | No |
| nickName | SortOrder | No |
| Gender | SortOrder | No |
| Language | SortOrder | No |
| dob | SortOrder | No |
| isValidated | SortOrder | No |
| isSuspended | SortOrder | No |
| managerId | SortOrder | No |
| isTfaEnable | SortOrder | No |
| tfaSecret | SortOrder | No |
| passWordFaker | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Title | EnumTitleFieldRefInput | Null | Yes |
| in | Title[] | ListEnumTitleFieldRefInput | Null | Yes |
| notIn | Title[] | ListEnumTitleFieldRefInput | Null | Yes |
| not | Title | NestedEnumTitleNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumTitleNullableFilter | No |
| _max | NestedEnumTitleNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumGenderNullableFilter | No |
| _max | NestedEnumGenderNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Language | EnumLanguageFieldRefInput | Null | Yes |
| in | Language[] | ListEnumLanguageFieldRefInput | Null | Yes |
| notIn | Language[] | ListEnumLanguageFieldRefInput | Null | Yes |
| not | Language | NestedEnumLanguageNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumLanguageNullableFilter | No |
| _max | NestedEnumLanguageNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| pwdHash | SortOrder | No |
| salt | SortOrder | No |
| isAdmin | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| pwdHash | SortOrder | No |
| salt | SortOrder | No |
| isAdmin | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| pwdHash | SortOrder | No |
| salt | SortOrder | No |
| isAdmin | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderProfile | SortOrder | No |
| bio | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isDeleted | SortOrder | No |
| orderProfile | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderProfile | SortOrder | No |
| bio | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderProfile | SortOrder | No |
| bio | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isDeleted | SortOrder | No |
| orderProfile | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrganizationWhereInput | No |
| isNot | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderGroup | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| isActiv | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isDeleted | SortOrder | No |
| orderGroup | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderGroup | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| isActiv | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderGroup | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| isActiv | SortOrder | No |
| orgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isDeleted | SortOrder | No |
| orderGroup | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TodoState | EnumTodoStateFieldRefInput | No |
| in | TodoState[] | ListEnumTodoStateFieldRefInput | No |
| notIn | TodoState[] | ListEnumTodoStateFieldRefInput | No |
| not | TodoState | NestedEnumTodoStateFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | TodoWhereInput | Null | Yes |
| isNot | TodoWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTodo | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| todoState | SortOrder | No |
| mainTodoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderTodo | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTodo | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| todoState | SortOrder | No |
| mainTodoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTodo | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| todoState | SortOrder | No |
| mainTodoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderTodo | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TodoState | EnumTodoStateFieldRefInput | No |
| in | TodoState[] | ListEnumTodoStateFieldRefInput | No |
| notIn | TodoState[] | ListEnumTodoStateFieldRefInput | No |
| not | TodoState | NestedEnumTodoStateWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTodoStateFilter | No |
| _max | NestedEnumTodoStateFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | TodoWhereInput | No |
| isNot | TodoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| todoId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| todoId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| todoId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| todoId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskState | EnumTaskStateFieldRefInput | No |
| in | TaskState[] | ListEnumTaskStateFieldRefInput | No |
| notIn | TaskState[] | ListEnumTaskStateFieldRefInput | No |
| not | TaskState | NestedEnumTaskStateFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | TaskWhereInput | Null | Yes |
| isNot | TaskWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTask | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| taskState | SortOrder | No |
| mainTaskId | SortOrder | No |
| todoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderTask | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTask | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| taskState | SortOrder | No |
| mainTaskId | SortOrder | No |
| todoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderTask | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| taskState | SortOrder | No |
| mainTaskId | SortOrder | No |
| todoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderTask | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskState | EnumTaskStateFieldRefInput | No |
| in | TaskState[] | ListEnumTaskStateFieldRefInput | No |
| notIn | TaskState[] | ListEnumTaskStateFieldRefInput | No |
| not | TaskState | NestedEnumTaskStateWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTaskStateFilter | No |
| _max | NestedEnumTaskStateFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | TaskWhereInput | No |
| isNot | TaskWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| taskId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| taskId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| taskId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| taskId | SortOrder | No |
| isAuthor | SortOrder | No |
| isAssigned | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| comment | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | CategoryWhereInput | No |
| some | CategoryWhereInput | No |
| none | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderPost | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderPost | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderPost | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| orderPost | SortOrder | No |
| title | SortOrder | No |
| content | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderPost | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderCategory | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderCategory | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderCategory | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderCategory | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderCategory | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | PostWhereInput | No |
| isNot | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderComment | SortOrder | No |
| content | SortOrder | No |
| postId | SortOrder | No |
| authorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderComment | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderComment | SortOrder | No |
| content | SortOrder | No |
| postId | SortOrder | No |
| authorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| orderComment | SortOrder | No |
| content | SortOrder | No |
| postId | SortOrder | No |
| authorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| orderComment | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| name | SortOrder | No |
| storageName | SortOrder | No |
| type | SortOrder | No |
| data | SortOrder | No |
| size | SortOrder | No |
| isArchived | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| size | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| name | SortOrder | No |
| storageName | SortOrder | No |
| type | SortOrder | No |
| data | SortOrder | No |
| size | SortOrder | No |
| isArchived | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isPublic | SortOrder | No |
| ownerId | SortOrder | No |
| orgId | SortOrder | No |
| name | SortOrder | No |
| storageName | SortOrder | No |
| type | SortOrder | No |
| data | SortOrder | No |
| size | SortOrder | No |
| isArchived | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| size | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| follower_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| post_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| post_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| post_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | SortOrder | No |
| post_id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| caption | SortOrder | No |
| user_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| caption | SortOrder | No |
| user_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| caption | SortOrder | No |
| user_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| type | SortOrder | No |
| url | SortOrder | No |
| associated_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isDeleted | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| type | SortOrder | No |
| url | SortOrder | No |
| associated_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| type | SortOrder | No |
| url | SortOrder | No |
| associated_id | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isDeleted | SortOrder | No |
| sequence | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| name | SortOrder | No |
| value | SortOrder | No |
| utility | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| name | SortOrder | No |
| value | SortOrder | No |
| utility | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| name | SortOrder | No |
| value | SortOrder | No |
| utility | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrgEmailWhereInput | No |
| isNot | OrgEmailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| useTo | SortOrder | No |
| isActiv | SortOrder | No |
| emailOrgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isDeleted | SortOrder | No |
| emailOrgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| useTo | SortOrder | No |
| isActiv | SortOrder | No |
| emailOrgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| useTo | SortOrder | No |
| isActiv | SortOrder | No |
| emailOrgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| isDeleted | SortOrder | No |
| emailOrgId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| domain | SortOrder | No |
| allowed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| domain | SortOrder | No |
| allowed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| domain | SortOrder | No |
| allowed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| userId | SortOrder | No |
| tokenId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| userId | SortOrder | No |
| tokenId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| userId | SortOrder | No |
| tokenId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | ScopeWhereInput | No |
| some | ScopeWhereInput | No |
| none | ScopeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| key | SortOrder | No |
| uuid | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| key | SortOrder | No |
| uuid | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| key | SortOrder | No |
| uuid | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| scope | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| scope | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| scope | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TokenType | EnumTokenTypeFieldRefInput | No |
| in | TokenType[] | ListEnumTokenTypeFieldRefInput | No |
| notIn | TokenType[] | ListEnumTokenTypeFieldRefInput | No |
| not | TokenType | NestedEnumTokenTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| tokenId | SortOrder | No |
| type | SortOrder | No |
| emailToken | SortOrder | No |
| valid | SortOrder | No |
| expiration | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| tokenId | SortOrder | No |
| type | SortOrder | No |
| emailToken | SortOrder | No |
| valid | SortOrder | No |
| expiration | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| tokenId | SortOrder | No |
| type | SortOrder | No |
| emailToken | SortOrder | No |
| valid | SortOrder | No |
| expiration | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TokenType | EnumTokenTypeFieldRefInput | No |
| in | TokenType[] | ListEnumTokenTypeFieldRefInput | No |
| notIn | TokenType[] | ListEnumTokenTypeFieldRefInput | No |
| not | TokenType | NestedEnumTokenTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTokenTypeFilter | No |
| _max | NestedEnumTokenTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| doneAt | SortOrder | No |
| modifiedById | SortOrder | No |
| modelName | SortOrder | No |
| recordId | SortOrder | No |
| operation | SortOrder | No |
| newData | SortOrder | No |
| oldData | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| doneAt | SortOrder | No |
| modifiedById | SortOrder | No |
| modelName | SortOrder | No |
| recordId | SortOrder | No |
| operation | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| doneAt | SortOrder | No |
| modifiedById | SortOrder | No |
| modelName | SortOrder | No |
| recordId | SortOrder | No |
| operation | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedJsonFilter | No |
| _max | NestedJsonFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isValidated | SortOrder | No |
| emailToken | SortOrder | No |
| timeStamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isValidated | SortOrder | No |
| emailToken | SortOrder | No |
| timeStamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| numSeq | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| published | SortOrder | No |
| isPublic | SortOrder | No |
| isDeleted | SortOrder | No |
| isDeletedDT | SortOrder | No |
| isValidated | SortOrder | No |
| emailToken | SortOrder | No |
| timeStamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | SortOrder | No |
| isDeleted | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgEmailCreateWithoutOrgInput | OrgEmailCreateWithoutOrgInput[] | OrgEmailUncheckedCreateWithoutOrgInput | OrgEmailUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | OrgEmailCreateOrConnectWithoutOrgInput | OrgEmailCreateOrConnectWithoutOrgInput[] | No |
| createMany | OrgEmailCreateManyOrgInputEnvelope | No |
| connect | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgDomainCreateWithoutOrgInput | OrgDomainCreateWithoutOrgInput[] | OrgDomainUncheckedCreateWithoutOrgInput | OrgDomainUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | OrgDomainCreateOrConnectWithoutOrgInput | OrgDomainCreateOrConnectWithoutOrgInput[] | No |
| createMany | OrgDomainCreateManyOrgInputEnvelope | No |
| connect | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutOrgEntityInput | OrganizationUncheckedCreateWithoutOrgEntityInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutOrgEntityInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutMainOrgInput | OrganizationCreateWithoutMainOrgInput[] | OrganizationUncheckedCreateWithoutMainOrgInput | OrganizationUncheckedCreateWithoutMainOrgInput[] | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutMainOrgInput | OrganizationCreateOrConnectWithoutMainOrgInput[] | No |
| createMany | OrganizationCreateManyMainOrgInputEnvelope | No |
| connect | OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutOrgsInput | UserCreateWithoutOrgsInput[] | UserUncheckedCreateWithoutOrgsInput | UserUncheckedCreateWithoutOrgsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutOrgsInput | UserCreateOrConnectWithoutOrgsInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutOrgInput | PostCreateWithoutOrgInput[] | PostUncheckedCreateWithoutOrgInput | PostUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutOrgInput | PostCreateOrConnectWithoutOrgInput[] | No |
| createMany | PostCreateManyOrgInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutOrgInput | GroupCreateWithoutOrgInput[] | GroupUncheckedCreateWithoutOrgInput | GroupUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutOrgInput | GroupCreateOrConnectWithoutOrgInput[] | No |
| createMany | GroupCreateManyOrgInputEnvelope | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutOrgInput | FileCreateWithoutOrgInput[] | FileUncheckedCreateWithoutOrgInput | FileUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutOrgInput | FileCreateOrConnectWithoutOrgInput[] | No |
| createMany | FileCreateManyOrgInputEnvelope | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutOrgInput | TaskCreateWithoutOrgInput[] | TaskUncheckedCreateWithoutOrgInput | TaskUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutOrgInput | TaskCreateOrConnectWithoutOrgInput[] | No |
| createMany | TaskCreateManyOrgInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutOrgInput | TodoCreateWithoutOrgInput[] | TodoUncheckedCreateWithoutOrgInput | TodoUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutOrgInput | TodoCreateOrConnectWithoutOrgInput[] | No |
| createMany | TodoCreateManyOrgInputEnvelope | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgEmailCreateWithoutOrgInput | OrgEmailCreateWithoutOrgInput[] | OrgEmailUncheckedCreateWithoutOrgInput | OrgEmailUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | OrgEmailCreateOrConnectWithoutOrgInput | OrgEmailCreateOrConnectWithoutOrgInput[] | No |
| createMany | OrgEmailCreateManyOrgInputEnvelope | No |
| connect | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgDomainCreateWithoutOrgInput | OrgDomainCreateWithoutOrgInput[] | OrgDomainUncheckedCreateWithoutOrgInput | OrgDomainUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | OrgDomainCreateOrConnectWithoutOrgInput | OrgDomainCreateOrConnectWithoutOrgInput[] | No |
| createMany | OrgDomainCreateManyOrgInputEnvelope | No |
| connect | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutMainOrgInput | OrganizationCreateWithoutMainOrgInput[] | OrganizationUncheckedCreateWithoutMainOrgInput | OrganizationUncheckedCreateWithoutMainOrgInput[] | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutMainOrgInput | OrganizationCreateOrConnectWithoutMainOrgInput[] | No |
| createMany | OrganizationCreateManyMainOrgInputEnvelope | No |
| connect | OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutOrgsInput | UserCreateWithoutOrgsInput[] | UserUncheckedCreateWithoutOrgsInput | UserUncheckedCreateWithoutOrgsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutOrgsInput | UserCreateOrConnectWithoutOrgsInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutOrgInput | PostCreateWithoutOrgInput[] | PostUncheckedCreateWithoutOrgInput | PostUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutOrgInput | PostCreateOrConnectWithoutOrgInput[] | No |
| createMany | PostCreateManyOrgInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutOrgInput | GroupCreateWithoutOrgInput[] | GroupUncheckedCreateWithoutOrgInput | GroupUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutOrgInput | GroupCreateOrConnectWithoutOrgInput[] | No |
| createMany | GroupCreateManyOrgInputEnvelope | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutOrgInput | FileCreateWithoutOrgInput[] | FileUncheckedCreateWithoutOrgInput | FileUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutOrgInput | FileCreateOrConnectWithoutOrgInput[] | No |
| createMany | FileCreateManyOrgInputEnvelope | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutOrgInput | TaskCreateWithoutOrgInput[] | TaskUncheckedCreateWithoutOrgInput | TaskUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutOrgInput | TaskCreateOrConnectWithoutOrgInput[] | No |
| createMany | TaskCreateManyOrgInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutOrgInput | TodoCreateWithoutOrgInput[] | TodoUncheckedCreateWithoutOrgInput | TodoUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutOrgInput | TodoCreateOrConnectWithoutOrgInput[] | No |
| createMany | TodoCreateManyOrgInputEnvelope | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | OrgEmailCreateWithoutOrgInput | OrgEmailCreateWithoutOrgInput[] | OrgEmailUncheckedCreateWithoutOrgInput | OrgEmailUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | OrgEmailCreateOrConnectWithoutOrgInput | OrgEmailCreateOrConnectWithoutOrgInput[] | No |
| upsert | OrgEmailUpsertWithWhereUniqueWithoutOrgInput | OrgEmailUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | OrgEmailCreateManyOrgInputEnvelope | No |
| set | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| disconnect | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| delete | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| connect | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| update | OrgEmailUpdateWithWhereUniqueWithoutOrgInput | OrgEmailUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | OrgEmailUpdateManyWithWhereWithoutOrgInput | OrgEmailUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | OrgEmailScalarWhereInput | OrgEmailScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgDomainCreateWithoutOrgInput | OrgDomainCreateWithoutOrgInput[] | OrgDomainUncheckedCreateWithoutOrgInput | OrgDomainUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | OrgDomainCreateOrConnectWithoutOrgInput | OrgDomainCreateOrConnectWithoutOrgInput[] | No |
| upsert | OrgDomainUpsertWithWhereUniqueWithoutOrgInput | OrgDomainUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | OrgDomainCreateManyOrgInputEnvelope | No |
| set | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| disconnect | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| delete | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| connect | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| update | OrgDomainUpdateWithWhereUniqueWithoutOrgInput | OrgDomainUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | OrgDomainUpdateManyWithWhereWithoutOrgInput | OrgDomainUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | OrgDomainScalarWhereInput | OrgDomainScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutOrgEntityInput | OrganizationUncheckedCreateWithoutOrgEntityInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutOrgEntityInput | No |
| upsert | OrganizationUpsertWithoutOrgEntityInput | No |
| disconnect | Boolean | OrganizationWhereInput | No |
| delete | Boolean | OrganizationWhereInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutOrgEntityInput | OrganizationUpdateWithoutOrgEntityInput | OrganizationUncheckedUpdateWithoutOrgEntityInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutOrgsInput | UserCreateWithoutOrgsInput[] | UserUncheckedCreateWithoutOrgsInput | UserUncheckedCreateWithoutOrgsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutOrgsInput | UserCreateOrConnectWithoutOrgsInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutOrgsInput | UserUpsertWithWhereUniqueWithoutOrgsInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutOrgsInput | UserUpdateWithWhereUniqueWithoutOrgsInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutOrgsInput | UserUpdateManyWithWhereWithoutOrgsInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutOrgInput | PostCreateWithoutOrgInput[] | PostUncheckedCreateWithoutOrgInput | PostUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutOrgInput | PostCreateOrConnectWithoutOrgInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutOrgInput | PostUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | PostCreateManyOrgInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutOrgInput | PostUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutOrgInput | PostUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutOrgInput | GroupCreateWithoutOrgInput[] | GroupUncheckedCreateWithoutOrgInput | GroupUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutOrgInput | GroupCreateOrConnectWithoutOrgInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutOrgInput | GroupUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | GroupCreateManyOrgInputEnvelope | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutOrgInput | GroupUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutOrgInput | GroupUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutOrgInput | FileCreateWithoutOrgInput[] | FileUncheckedCreateWithoutOrgInput | FileUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutOrgInput | FileCreateOrConnectWithoutOrgInput[] | No |
| upsert | FileUpsertWithWhereUniqueWithoutOrgInput | FileUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | FileCreateManyOrgInputEnvelope | No |
| set | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| disconnect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| delete | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| update | FileUpdateWithWhereUniqueWithoutOrgInput | FileUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | FileUpdateManyWithWhereWithoutOrgInput | FileUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | FileScalarWhereInput | FileScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutOrgInput | TaskCreateWithoutOrgInput[] | TaskUncheckedCreateWithoutOrgInput | TaskUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutOrgInput | TaskCreateOrConnectWithoutOrgInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutOrgInput | TaskUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | TaskCreateManyOrgInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutOrgInput | TaskUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutOrgInput | TaskUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutOrgInput | TodoCreateWithoutOrgInput[] | TodoUncheckedCreateWithoutOrgInput | TodoUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutOrgInput | TodoCreateOrConnectWithoutOrgInput[] | No |
| upsert | TodoUpsertWithWhereUniqueWithoutOrgInput | TodoUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | TodoCreateManyOrgInputEnvelope | No |
| set | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| disconnect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| delete | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| update | TodoUpdateWithWhereUniqueWithoutOrgInput | TodoUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | TodoUpdateManyWithWhereWithoutOrgInput | TodoUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgEmailCreateWithoutOrgInput | OrgEmailCreateWithoutOrgInput[] | OrgEmailUncheckedCreateWithoutOrgInput | OrgEmailUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | OrgEmailCreateOrConnectWithoutOrgInput | OrgEmailCreateOrConnectWithoutOrgInput[] | No |
| upsert | OrgEmailUpsertWithWhereUniqueWithoutOrgInput | OrgEmailUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | OrgEmailCreateManyOrgInputEnvelope | No |
| set | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| disconnect | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| delete | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| connect | OrgEmailWhereUniqueInput | OrgEmailWhereUniqueInput[] | No |
| update | OrgEmailUpdateWithWhereUniqueWithoutOrgInput | OrgEmailUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | OrgEmailUpdateManyWithWhereWithoutOrgInput | OrgEmailUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | OrgEmailScalarWhereInput | OrgEmailScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgDomainCreateWithoutOrgInput | OrgDomainCreateWithoutOrgInput[] | OrgDomainUncheckedCreateWithoutOrgInput | OrgDomainUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | OrgDomainCreateOrConnectWithoutOrgInput | OrgDomainCreateOrConnectWithoutOrgInput[] | No |
| upsert | OrgDomainUpsertWithWhereUniqueWithoutOrgInput | OrgDomainUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | OrgDomainCreateManyOrgInputEnvelope | No |
| set | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| disconnect | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| delete | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| connect | OrgDomainWhereUniqueInput | OrgDomainWhereUniqueInput[] | No |
| update | OrgDomainUpdateWithWhereUniqueWithoutOrgInput | OrgDomainUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | OrgDomainUpdateManyWithWhereWithoutOrgInput | OrgDomainUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | OrgDomainScalarWhereInput | OrgDomainScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutOrgsInput | UserCreateWithoutOrgsInput[] | UserUncheckedCreateWithoutOrgsInput | UserUncheckedCreateWithoutOrgsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutOrgsInput | UserCreateOrConnectWithoutOrgsInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutOrgsInput | UserUpsertWithWhereUniqueWithoutOrgsInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutOrgsInput | UserUpdateWithWhereUniqueWithoutOrgsInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutOrgsInput | UserUpdateManyWithWhereWithoutOrgsInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutOrgInput | PostCreateWithoutOrgInput[] | PostUncheckedCreateWithoutOrgInput | PostUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutOrgInput | PostCreateOrConnectWithoutOrgInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutOrgInput | PostUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | PostCreateManyOrgInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutOrgInput | PostUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutOrgInput | PostUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutOrgInput | GroupCreateWithoutOrgInput[] | GroupUncheckedCreateWithoutOrgInput | GroupUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutOrgInput | GroupCreateOrConnectWithoutOrgInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutOrgInput | GroupUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | GroupCreateManyOrgInputEnvelope | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutOrgInput | GroupUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutOrgInput | GroupUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutOrgInput | FileCreateWithoutOrgInput[] | FileUncheckedCreateWithoutOrgInput | FileUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutOrgInput | FileCreateOrConnectWithoutOrgInput[] | No |
| upsert | FileUpsertWithWhereUniqueWithoutOrgInput | FileUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | FileCreateManyOrgInputEnvelope | No |
| set | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| disconnect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| delete | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| update | FileUpdateWithWhereUniqueWithoutOrgInput | FileUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | FileUpdateManyWithWhereWithoutOrgInput | FileUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | FileScalarWhereInput | FileScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutOrgInput | TaskCreateWithoutOrgInput[] | TaskUncheckedCreateWithoutOrgInput | TaskUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutOrgInput | TaskCreateOrConnectWithoutOrgInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutOrgInput | TaskUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | TaskCreateManyOrgInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutOrgInput | TaskUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutOrgInput | TaskUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutOrgInput | TodoCreateWithoutOrgInput[] | TodoUncheckedCreateWithoutOrgInput | TodoUncheckedCreateWithoutOrgInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutOrgInput | TodoCreateOrConnectWithoutOrgInput[] | No |
| upsert | TodoUpsertWithWhereUniqueWithoutOrgInput | TodoUpsertWithWhereUniqueWithoutOrgInput[] | No |
| createMany | TodoCreateManyOrgInputEnvelope | No |
| set | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| disconnect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| delete | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| update | TodoUpdateWithWhereUniqueWithoutOrgInput | TodoUpdateWithWhereUniqueWithoutOrgInput[] | No |
| updateMany | TodoUpdateManyWithWhereWithoutOrgInput | TodoUpdateManyWithWhereWithoutOrgInput[] | No |
| deleteMany | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutOrgEmailsInput | OrganizationUncheckedCreateWithoutOrgEmailsInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutOrgEmailsInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutOrgEmailsInput | OrganizationUncheckedCreateWithoutOrgEmailsInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutOrgEmailsInput | No |
| upsert | OrganizationUpsertWithoutOrgEmailsInput | No |
| disconnect | Boolean | OrganizationWhereInput | No |
| delete | Boolean | OrganizationWhereInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutOrgEmailsInput | OrganizationUpdateWithoutOrgEmailsInput | OrganizationUncheckedUpdateWithoutOrgEmailsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutOrgDomainsInput | OrganizationUncheckedCreateWithoutOrgDomainsInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutOrgDomainsInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutOrgDomainsInput | OrganizationUncheckedCreateWithoutOrgDomainsInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutOrgDomainsInput | No |
| upsert | OrganizationUpsertWithoutOrgDomainsInput | No |
| disconnect | Boolean | OrganizationWhereInput | No |
| delete | Boolean | OrganizationWhereInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutOrgDomainsInput | OrganizationUpdateWithoutOrgDomainsInput | OrganizationUncheckedUpdateWithoutOrgDomainsInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Role[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | PermissionClaim[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTeamInput | UserUncheckedCreateWithoutTeamInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTeamInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutManagerInput | UserCreateWithoutManagerInput[] | UserUncheckedCreateWithoutManagerInput | UserUncheckedCreateWithoutManagerInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutManagerInput | UserCreateOrConnectWithoutManagerInput[] | No |
| createMany | UserCreateManyManagerInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutUsersInput | ProfileCreateWithoutUsersInput[] | ProfileUncheckedCreateWithoutUsersInput | ProfileUncheckedCreateWithoutUsersInput[] | No |
| connectOrCreate | ProfileCreateOrConnectWithoutUsersInput | ProfileCreateOrConnectWithoutUsersInput[] | No |
| connect | ProfileWhereUniqueInput | ProfileWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutUsersInput | GroupCreateWithoutUsersInput[] | GroupUncheckedCreateWithoutUsersInput | GroupUncheckedCreateWithoutUsersInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutUsersInput | GroupCreateOrConnectWithoutUsersInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutOwnerInput | PostCreateWithoutOwnerInput[] | PostUncheckedCreateWithoutOwnerInput | PostUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutOwnerInput | PostCreateOrConnectWithoutOwnerInput[] | No |
| createMany | PostCreateManyOwnerInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutUserInput | StoryCreateWithoutUserInput[] | StoryUncheckedCreateWithoutUserInput | StoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutUserInput | StoryCreateOrConnectWithoutUserInput[] | No |
| createMany | StoryCreateManyUserInputEnvelope | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserTodoLinkCreateWithoutUserInput | UserTodoLinkCreateWithoutUserInput[] | UserTodoLinkUncheckedCreateWithoutUserInput | UserTodoLinkUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserTodoLinkCreateOrConnectWithoutUserInput | UserTodoLinkCreateOrConnectWithoutUserInput[] | No |
| createMany | UserTodoLinkCreateManyUserInputEnvelope | No |
| connect | UserTodoLinkWhereUniqueInput | UserTodoLinkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutOwnerInput | TodoCreateWithoutOwnerInput[] | TodoUncheckedCreateWithoutOwnerInput | TodoUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutOwnerInput | TodoCreateOrConnectWithoutOwnerInput[] | No |
| createMany | TodoCreateManyOwnerInputEnvelope | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserTaskLinkCreateWithoutUserInput | UserTaskLinkCreateWithoutUserInput[] | UserTaskLinkUncheckedCreateWithoutUserInput | UserTaskLinkUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserTaskLinkCreateOrConnectWithoutUserInput | UserTaskLinkCreateOrConnectWithoutUserInput[] | No |
| createMany | UserTaskLinkCreateManyUserInputEnvelope | No |
| connect | UserTaskLinkWhereUniqueInput | UserTaskLinkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutOwnerInput | TaskCreateWithoutOwnerInput[] | TaskUncheckedCreateWithoutOwnerInput | TaskUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutOwnerInput | TaskCreateOrConnectWithoutOwnerInput[] | No |
| createMany | TaskCreateManyOwnerInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutOwnerInput | FileCreateWithoutOwnerInput[] | FileUncheckedCreateWithoutOwnerInput | FileUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutOwnerInput | FileCreateOrConnectWithoutOwnerInput[] | No |
| createMany | FileCreateManyOwnerInputEnvelope | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TokenCreateWithoutUserInput | TokenCreateWithoutUserInput[] | TokenUncheckedCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TokenCreateOrConnectWithoutUserInput | TokenCreateOrConnectWithoutUserInput[] | No |
| createMany | TokenCreateManyUserInputEnvelope | No |
| connect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApiKeyCreateWithoutUserInput | ApiKeyCreateWithoutUserInput[] | ApiKeyUncheckedCreateWithoutUserInput | ApiKeyUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ApiKeyCreateOrConnectWithoutUserInput | ApiKeyCreateOrConnectWithoutUserInput[] | No |
| createMany | ApiKeyCreateManyUserInputEnvelope | No |
| connect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserSecretCreateWithoutUserInput | UserSecretUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserSecretCreateOrConnectWithoutUserInput | No |
| connect | UserSecretWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserFollowerCreateWithoutUserInput | UserFollowerCreateWithoutUserInput[] | UserFollowerUncheckedCreateWithoutUserInput | UserFollowerUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserFollowerCreateOrConnectWithoutUserInput | UserFollowerCreateOrConnectWithoutUserInput[] | No |
| createMany | UserFollowerCreateManyUserInputEnvelope | No |
| connect | UserFollowerWhereUniqueInput | UserFollowerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostLikeCreateWithoutUserInput | PostLikeCreateWithoutUserInput[] | PostLikeUncheckedCreateWithoutUserInput | PostLikeUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | PostLikeCreateOrConnectWithoutUserInput | PostLikeCreateOrConnectWithoutUserInput[] | No |
| createMany | PostLikeCreateManyUserInputEnvelope | No |
| connect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutManagerInput | UserCreateWithoutManagerInput[] | UserUncheckedCreateWithoutManagerInput | UserUncheckedCreateWithoutManagerInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutManagerInput | UserCreateOrConnectWithoutManagerInput[] | No |
| createMany | UserCreateManyManagerInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutUsersInput | ProfileCreateWithoutUsersInput[] | ProfileUncheckedCreateWithoutUsersInput | ProfileUncheckedCreateWithoutUsersInput[] | No |
| connectOrCreate | ProfileCreateOrConnectWithoutUsersInput | ProfileCreateOrConnectWithoutUsersInput[] | No |
| connect | ProfileWhereUniqueInput | ProfileWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutUsersInput | GroupCreateWithoutUsersInput[] | GroupUncheckedCreateWithoutUsersInput | GroupUncheckedCreateWithoutUsersInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutUsersInput | GroupCreateOrConnectWithoutUsersInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutOwnerInput | PostCreateWithoutOwnerInput[] | PostUncheckedCreateWithoutOwnerInput | PostUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutOwnerInput | PostCreateOrConnectWithoutOwnerInput[] | No |
| createMany | PostCreateManyOwnerInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutUserInput | StoryCreateWithoutUserInput[] | StoryUncheckedCreateWithoutUserInput | StoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutUserInput | StoryCreateOrConnectWithoutUserInput[] | No |
| createMany | StoryCreateManyUserInputEnvelope | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserTodoLinkCreateWithoutUserInput | UserTodoLinkCreateWithoutUserInput[] | UserTodoLinkUncheckedCreateWithoutUserInput | UserTodoLinkUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserTodoLinkCreateOrConnectWithoutUserInput | UserTodoLinkCreateOrConnectWithoutUserInput[] | No |
| createMany | UserTodoLinkCreateManyUserInputEnvelope | No |
| connect | UserTodoLinkWhereUniqueInput | UserTodoLinkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutOwnerInput | TodoCreateWithoutOwnerInput[] | TodoUncheckedCreateWithoutOwnerInput | TodoUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutOwnerInput | TodoCreateOrConnectWithoutOwnerInput[] | No |
| createMany | TodoCreateManyOwnerInputEnvelope | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserTaskLinkCreateWithoutUserInput | UserTaskLinkCreateWithoutUserInput[] | UserTaskLinkUncheckedCreateWithoutUserInput | UserTaskLinkUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserTaskLinkCreateOrConnectWithoutUserInput | UserTaskLinkCreateOrConnectWithoutUserInput[] | No |
| createMany | UserTaskLinkCreateManyUserInputEnvelope | No |
| connect | UserTaskLinkWhereUniqueInput | UserTaskLinkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutOwnerInput | TaskCreateWithoutOwnerInput[] | TaskUncheckedCreateWithoutOwnerInput | TaskUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutOwnerInput | TaskCreateOrConnectWithoutOwnerInput[] | No |
| createMany | TaskCreateManyOwnerInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutOwnerInput | FileCreateWithoutOwnerInput[] | FileUncheckedCreateWithoutOwnerInput | FileUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutOwnerInput | FileCreateOrConnectWithoutOwnerInput[] | No |
| createMany | FileCreateManyOwnerInputEnvelope | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TokenCreateWithoutUserInput | TokenCreateWithoutUserInput[] | TokenUncheckedCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TokenCreateOrConnectWithoutUserInput | TokenCreateOrConnectWithoutUserInput[] | No |
| createMany | TokenCreateManyUserInputEnvelope | No |
| connect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApiKeyCreateWithoutUserInput | ApiKeyCreateWithoutUserInput[] | ApiKeyUncheckedCreateWithoutUserInput | ApiKeyUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ApiKeyCreateOrConnectWithoutUserInput | ApiKeyCreateOrConnectWithoutUserInput[] | No |
| createMany | ApiKeyCreateManyUserInputEnvelope | No |
| connect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserSecretCreateWithoutUserInput | UserSecretUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserSecretCreateOrConnectWithoutUserInput | No |
| connect | UserSecretWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserFollowerCreateWithoutUserInput | UserFollowerCreateWithoutUserInput[] | UserFollowerUncheckedCreateWithoutUserInput | UserFollowerUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserFollowerCreateOrConnectWithoutUserInput | UserFollowerCreateOrConnectWithoutUserInput[] | No |
| createMany | UserFollowerCreateManyUserInputEnvelope | No |
| connect | UserFollowerWhereUniqueInput | UserFollowerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostLikeCreateWithoutUserInput | PostLikeCreateWithoutUserInput[] | PostLikeUncheckedCreateWithoutUserInput | PostLikeUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | PostLikeCreateOrConnectWithoutUserInput | PostLikeCreateOrConnectWithoutUserInput[] | No |
| createMany | PostLikeCreateManyUserInputEnvelope | No |
| connect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Title | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Gender | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Language | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | PermissionClaim[] | No |
| push | PermissionClaim | PermissionClaim[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTeamInput | UserUncheckedCreateWithoutTeamInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTeamInput | No |
| upsert | UserUpsertWithoutTeamInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTeamInput | UserUpdateWithoutTeamInput | UserUncheckedUpdateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutManagerInput | UserCreateWithoutManagerInput[] | UserUncheckedCreateWithoutManagerInput | UserUncheckedCreateWithoutManagerInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutManagerInput | UserCreateOrConnectWithoutManagerInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutManagerInput | UserUpsertWithWhereUniqueWithoutManagerInput[] | No |
| createMany | UserCreateManyManagerInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutManagerInput | UserUpdateWithWhereUniqueWithoutManagerInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutManagerInput | UserUpdateManyWithWhereWithoutManagerInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutUsersInput | GroupCreateWithoutUsersInput[] | GroupUncheckedCreateWithoutUsersInput | GroupUncheckedCreateWithoutUsersInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutUsersInput | GroupCreateOrConnectWithoutUsersInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutUsersInput | GroupUpsertWithWhereUniqueWithoutUsersInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutUsersInput | GroupUpdateWithWhereUniqueWithoutUsersInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutUsersInput | GroupUpdateManyWithWhereWithoutUsersInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutOwnerInput | PostCreateWithoutOwnerInput[] | PostUncheckedCreateWithoutOwnerInput | PostUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutOwnerInput | PostCreateOrConnectWithoutOwnerInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutOwnerInput | PostUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | PostCreateManyOwnerInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutOwnerInput | PostUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutOwnerInput | PostUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutUserInput | StoryCreateWithoutUserInput[] | StoryUncheckedCreateWithoutUserInput | StoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutUserInput | StoryCreateOrConnectWithoutUserInput[] | No |
| upsert | StoryUpsertWithWhereUniqueWithoutUserInput | StoryUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | StoryCreateManyUserInputEnvelope | No |
| set | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| disconnect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| delete | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| update | StoryUpdateWithWhereUniqueWithoutUserInput | StoryUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | StoryUpdateManyWithWhereWithoutUserInput | StoryUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutOwnerInput | TodoCreateWithoutOwnerInput[] | TodoUncheckedCreateWithoutOwnerInput | TodoUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutOwnerInput | TodoCreateOrConnectWithoutOwnerInput[] | No |
| upsert | TodoUpsertWithWhereUniqueWithoutOwnerInput | TodoUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | TodoCreateManyOwnerInputEnvelope | No |
| set | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| disconnect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| delete | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| update | TodoUpdateWithWhereUniqueWithoutOwnerInput | TodoUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | TodoUpdateManyWithWhereWithoutOwnerInput | TodoUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutOwnerInput | TaskCreateWithoutOwnerInput[] | TaskUncheckedCreateWithoutOwnerInput | TaskUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutOwnerInput | TaskCreateOrConnectWithoutOwnerInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutOwnerInput | TaskUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | TaskCreateManyOwnerInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutOwnerInput | TaskUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutOwnerInput | TaskUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutOwnerInput | FileCreateWithoutOwnerInput[] | FileUncheckedCreateWithoutOwnerInput | FileUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutOwnerInput | FileCreateOrConnectWithoutOwnerInput[] | No |
| upsert | FileUpsertWithWhereUniqueWithoutOwnerInput | FileUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | FileCreateManyOwnerInputEnvelope | No |
| set | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| disconnect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| delete | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| update | FileUpdateWithWhereUniqueWithoutOwnerInput | FileUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | FileUpdateManyWithWhereWithoutOwnerInput | FileUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | FileScalarWhereInput | FileScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TokenCreateWithoutUserInput | TokenCreateWithoutUserInput[] | TokenUncheckedCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TokenCreateOrConnectWithoutUserInput | TokenCreateOrConnectWithoutUserInput[] | No |
| upsert | TokenUpsertWithWhereUniqueWithoutUserInput | TokenUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | TokenCreateManyUserInputEnvelope | No |
| set | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| disconnect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| delete | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| connect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| update | TokenUpdateWithWhereUniqueWithoutUserInput | TokenUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | TokenUpdateManyWithWhereWithoutUserInput | TokenUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | TokenScalarWhereInput | TokenScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApiKeyCreateWithoutUserInput | ApiKeyCreateWithoutUserInput[] | ApiKeyUncheckedCreateWithoutUserInput | ApiKeyUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ApiKeyCreateOrConnectWithoutUserInput | ApiKeyCreateOrConnectWithoutUserInput[] | No |
| upsert | ApiKeyUpsertWithWhereUniqueWithoutUserInput | ApiKeyUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | ApiKeyCreateManyUserInputEnvelope | No |
| set | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| disconnect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| delete | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| connect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| update | ApiKeyUpdateWithWhereUniqueWithoutUserInput | ApiKeyUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | ApiKeyUpdateManyWithWhereWithoutUserInput | ApiKeyUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | ApiKeyScalarWhereInput | ApiKeyScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserSecretCreateWithoutUserInput | UserSecretUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserSecretCreateOrConnectWithoutUserInput | No |
| upsert | UserSecretUpsertWithoutUserInput | No |
| disconnect | Boolean | UserSecretWhereInput | No |
| delete | Boolean | UserSecretWhereInput | No |
| connect | UserSecretWhereUniqueInput | No |
| update | UserSecretUpdateToOneWithWhereWithoutUserInput | UserSecretUpdateWithoutUserInput | UserSecretUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostLikeCreateWithoutUserInput | PostLikeCreateWithoutUserInput[] | PostLikeUncheckedCreateWithoutUserInput | PostLikeUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | PostLikeCreateOrConnectWithoutUserInput | PostLikeCreateOrConnectWithoutUserInput[] | No |
| upsert | PostLikeUpsertWithWhereUniqueWithoutUserInput | PostLikeUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | PostLikeCreateManyUserInputEnvelope | No |
| set | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| disconnect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| delete | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| connect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| update | PostLikeUpdateWithWhereUniqueWithoutUserInput | PostLikeUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | PostLikeUpdateManyWithWhereWithoutUserInput | PostLikeUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | PostLikeScalarWhereInput | PostLikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutManagerInput | UserCreateWithoutManagerInput[] | UserUncheckedCreateWithoutManagerInput | UserUncheckedCreateWithoutManagerInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutManagerInput | UserCreateOrConnectWithoutManagerInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutManagerInput | UserUpsertWithWhereUniqueWithoutManagerInput[] | No |
| createMany | UserCreateManyManagerInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutManagerInput | UserUpdateWithWhereUniqueWithoutManagerInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutManagerInput | UserUpdateManyWithWhereWithoutManagerInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutUsersInput | GroupCreateWithoutUsersInput[] | GroupUncheckedCreateWithoutUsersInput | GroupUncheckedCreateWithoutUsersInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutUsersInput | GroupCreateOrConnectWithoutUsersInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutUsersInput | GroupUpsertWithWhereUniqueWithoutUsersInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutUsersInput | GroupUpdateWithWhereUniqueWithoutUsersInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutUsersInput | GroupUpdateManyWithWhereWithoutUsersInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutOwnerInput | PostCreateWithoutOwnerInput[] | PostUncheckedCreateWithoutOwnerInput | PostUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutOwnerInput | PostCreateOrConnectWithoutOwnerInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutOwnerInput | PostUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | PostCreateManyOwnerInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutOwnerInput | PostUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutOwnerInput | PostUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutUserInput | StoryCreateWithoutUserInput[] | StoryUncheckedCreateWithoutUserInput | StoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutUserInput | StoryCreateOrConnectWithoutUserInput[] | No |
| upsert | StoryUpsertWithWhereUniqueWithoutUserInput | StoryUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | StoryCreateManyUserInputEnvelope | No |
| set | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| disconnect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| delete | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| update | StoryUpdateWithWhereUniqueWithoutUserInput | StoryUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | StoryUpdateManyWithWhereWithoutUserInput | StoryUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutOwnerInput | TodoCreateWithoutOwnerInput[] | TodoUncheckedCreateWithoutOwnerInput | TodoUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutOwnerInput | TodoCreateOrConnectWithoutOwnerInput[] | No |
| upsert | TodoUpsertWithWhereUniqueWithoutOwnerInput | TodoUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | TodoCreateManyOwnerInputEnvelope | No |
| set | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| disconnect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| delete | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| update | TodoUpdateWithWhereUniqueWithoutOwnerInput | TodoUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | TodoUpdateManyWithWhereWithoutOwnerInput | TodoUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutOwnerInput | TaskCreateWithoutOwnerInput[] | TaskUncheckedCreateWithoutOwnerInput | TaskUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutOwnerInput | TaskCreateOrConnectWithoutOwnerInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutOwnerInput | TaskUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | TaskCreateManyOwnerInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutOwnerInput | TaskUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutOwnerInput | TaskUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutOwnerInput | FileCreateWithoutOwnerInput[] | FileUncheckedCreateWithoutOwnerInput | FileUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutOwnerInput | FileCreateOrConnectWithoutOwnerInput[] | No |
| upsert | FileUpsertWithWhereUniqueWithoutOwnerInput | FileUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | FileCreateManyOwnerInputEnvelope | No |
| set | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| disconnect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| delete | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| update | FileUpdateWithWhereUniqueWithoutOwnerInput | FileUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | FileUpdateManyWithWhereWithoutOwnerInput | FileUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | FileScalarWhereInput | FileScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TokenCreateWithoutUserInput | TokenCreateWithoutUserInput[] | TokenUncheckedCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TokenCreateOrConnectWithoutUserInput | TokenCreateOrConnectWithoutUserInput[] | No |
| upsert | TokenUpsertWithWhereUniqueWithoutUserInput | TokenUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | TokenCreateManyUserInputEnvelope | No |
| set | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| disconnect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| delete | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| connect | TokenWhereUniqueInput | TokenWhereUniqueInput[] | No |
| update | TokenUpdateWithWhereUniqueWithoutUserInput | TokenUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | TokenUpdateManyWithWhereWithoutUserInput | TokenUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | TokenScalarWhereInput | TokenScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApiKeyCreateWithoutUserInput | ApiKeyCreateWithoutUserInput[] | ApiKeyUncheckedCreateWithoutUserInput | ApiKeyUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ApiKeyCreateOrConnectWithoutUserInput | ApiKeyCreateOrConnectWithoutUserInput[] | No |
| upsert | ApiKeyUpsertWithWhereUniqueWithoutUserInput | ApiKeyUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | ApiKeyCreateManyUserInputEnvelope | No |
| set | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| disconnect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| delete | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| connect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| update | ApiKeyUpdateWithWhereUniqueWithoutUserInput | ApiKeyUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | ApiKeyUpdateManyWithWhereWithoutUserInput | ApiKeyUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | ApiKeyScalarWhereInput | ApiKeyScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserSecretCreateWithoutUserInput | UserSecretUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserSecretCreateOrConnectWithoutUserInput | No |
| upsert | UserSecretUpsertWithoutUserInput | No |
| disconnect | Boolean | UserSecretWhereInput | No |
| delete | Boolean | UserSecretWhereInput | No |
| connect | UserSecretWhereUniqueInput | No |
| update | UserSecretUpdateToOneWithWhereWithoutUserInput | UserSecretUpdateWithoutUserInput | UserSecretUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostLikeCreateWithoutUserInput | PostLikeCreateWithoutUserInput[] | PostLikeUncheckedCreateWithoutUserInput | PostLikeUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | PostLikeCreateOrConnectWithoutUserInput | PostLikeCreateOrConnectWithoutUserInput[] | No |
| upsert | PostLikeUpsertWithWhereUniqueWithoutUserInput | PostLikeUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | PostLikeCreateManyUserInputEnvelope | No |
| set | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| disconnect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| delete | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| connect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| update | PostLikeUpdateWithWhereUniqueWithoutUserInput | PostLikeUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | PostLikeUpdateManyWithWhereWithoutUserInput | PostLikeUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | PostLikeScalarWhereInput | PostLikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUserSecretInput | UserUncheckedCreateWithoutUserSecretInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUserSecretInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUserSecretInput | UserUncheckedCreateWithoutUserSecretInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUserSecretInput | No |
| upsert | UserUpsertWithoutUserSecretInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutUserSecretInput | UserUpdateWithoutUserSecretInput | UserUncheckedUpdateWithoutUserSecretInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutProfilesInput | UserCreateWithoutProfilesInput[] | UserUncheckedCreateWithoutProfilesInput | UserUncheckedCreateWithoutProfilesInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutProfilesInput | UserCreateOrConnectWithoutProfilesInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutProfilesInput | UserCreateWithoutProfilesInput[] | UserUncheckedCreateWithoutProfilesInput | UserUncheckedCreateWithoutProfilesInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutProfilesInput | UserCreateOrConnectWithoutProfilesInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutProfilesInput | UserCreateWithoutProfilesInput[] | UserUncheckedCreateWithoutProfilesInput | UserUncheckedCreateWithoutProfilesInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutProfilesInput | UserCreateOrConnectWithoutProfilesInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutProfilesInput | UserUpsertWithWhereUniqueWithoutProfilesInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutProfilesInput | UserUpdateWithWhereUniqueWithoutProfilesInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutProfilesInput | UserUpdateManyWithWhereWithoutProfilesInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutProfilesInput | UserCreateWithoutProfilesInput[] | UserUncheckedCreateWithoutProfilesInput | UserUncheckedCreateWithoutProfilesInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutProfilesInput | UserCreateOrConnectWithoutProfilesInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutProfilesInput | UserUpsertWithWhereUniqueWithoutProfilesInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutProfilesInput | UserUpdateWithWhereUniqueWithoutProfilesInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutProfilesInput | UserUpdateManyWithWhereWithoutProfilesInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutGroupsInput | UserCreateWithoutGroupsInput[] | UserUncheckedCreateWithoutGroupsInput | UserUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutGroupsInput | UserCreateOrConnectWithoutGroupsInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutGroupsInput | TaskCreateWithoutGroupsInput[] | TaskUncheckedCreateWithoutGroupsInput | TaskUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutGroupsInput | TaskCreateOrConnectWithoutGroupsInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutGroupsInput | TodoCreateWithoutGroupsInput[] | TodoUncheckedCreateWithoutGroupsInput | TodoUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutGroupsInput | TodoCreateOrConnectWithoutGroupsInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutGroupsInput | PostCreateWithoutGroupsInput[] | PostUncheckedCreateWithoutGroupsInput | PostUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutGroupsInput | PostCreateOrConnectWithoutGroupsInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutGroupsInput | FileCreateWithoutGroupsInput[] | FileUncheckedCreateWithoutGroupsInput | FileUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutGroupsInput | FileCreateOrConnectWithoutGroupsInput[] | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutGroupsInput | OrganizationUncheckedCreateWithoutGroupsInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutGroupsInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutGroupsInput | UserCreateWithoutGroupsInput[] | UserUncheckedCreateWithoutGroupsInput | UserUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutGroupsInput | UserCreateOrConnectWithoutGroupsInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutGroupsInput | TaskCreateWithoutGroupsInput[] | TaskUncheckedCreateWithoutGroupsInput | TaskUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutGroupsInput | TaskCreateOrConnectWithoutGroupsInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutGroupsInput | TodoCreateWithoutGroupsInput[] | TodoUncheckedCreateWithoutGroupsInput | TodoUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutGroupsInput | TodoCreateOrConnectWithoutGroupsInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutGroupsInput | PostCreateWithoutGroupsInput[] | PostUncheckedCreateWithoutGroupsInput | PostUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutGroupsInput | PostCreateOrConnectWithoutGroupsInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutGroupsInput | FileCreateWithoutGroupsInput[] | FileUncheckedCreateWithoutGroupsInput | FileUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutGroupsInput | FileCreateOrConnectWithoutGroupsInput[] | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutGroupsInput | UserCreateWithoutGroupsInput[] | UserUncheckedCreateWithoutGroupsInput | UserUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutGroupsInput | UserCreateOrConnectWithoutGroupsInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutGroupsInput | UserUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutGroupsInput | UserUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutGroupsInput | UserUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutGroupsInput | TaskCreateWithoutGroupsInput[] | TaskUncheckedCreateWithoutGroupsInput | TaskUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutGroupsInput | TaskCreateOrConnectWithoutGroupsInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutGroupsInput | TaskUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutGroupsInput | TaskUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutGroupsInput | TaskUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutGroupsInput | TodoCreateWithoutGroupsInput[] | TodoUncheckedCreateWithoutGroupsInput | TodoUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutGroupsInput | TodoCreateOrConnectWithoutGroupsInput[] | No |
| upsert | TodoUpsertWithWhereUniqueWithoutGroupsInput | TodoUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| disconnect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| delete | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| update | TodoUpdateWithWhereUniqueWithoutGroupsInput | TodoUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | TodoUpdateManyWithWhereWithoutGroupsInput | TodoUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutGroupsInput | PostCreateWithoutGroupsInput[] | PostUncheckedCreateWithoutGroupsInput | PostUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutGroupsInput | PostCreateOrConnectWithoutGroupsInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutGroupsInput | PostUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutGroupsInput | PostUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutGroupsInput | PostUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutGroupsInput | FileCreateWithoutGroupsInput[] | FileUncheckedCreateWithoutGroupsInput | FileUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutGroupsInput | FileCreateOrConnectWithoutGroupsInput[] | No |
| upsert | FileUpsertWithWhereUniqueWithoutGroupsInput | FileUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| disconnect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| delete | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| update | FileUpdateWithWhereUniqueWithoutGroupsInput | FileUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | FileUpdateManyWithWhereWithoutGroupsInput | FileUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | FileScalarWhereInput | FileScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutGroupsInput | OrganizationUncheckedCreateWithoutGroupsInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutGroupsInput | No |
| upsert | OrganizationUpsertWithoutGroupsInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutGroupsInput | OrganizationUpdateWithoutGroupsInput | OrganizationUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutGroupsInput | UserCreateWithoutGroupsInput[] | UserUncheckedCreateWithoutGroupsInput | UserUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutGroupsInput | UserCreateOrConnectWithoutGroupsInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutGroupsInput | UserUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutGroupsInput | UserUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutGroupsInput | UserUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutGroupsInput | TaskCreateWithoutGroupsInput[] | TaskUncheckedCreateWithoutGroupsInput | TaskUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutGroupsInput | TaskCreateOrConnectWithoutGroupsInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutGroupsInput | TaskUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutGroupsInput | TaskUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutGroupsInput | TaskUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutGroupsInput | TodoCreateWithoutGroupsInput[] | TodoUncheckedCreateWithoutGroupsInput | TodoUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutGroupsInput | TodoCreateOrConnectWithoutGroupsInput[] | No |
| upsert | TodoUpsertWithWhereUniqueWithoutGroupsInput | TodoUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| disconnect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| delete | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| update | TodoUpdateWithWhereUniqueWithoutGroupsInput | TodoUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | TodoUpdateManyWithWhereWithoutGroupsInput | TodoUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutGroupsInput | PostCreateWithoutGroupsInput[] | PostUncheckedCreateWithoutGroupsInput | PostUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutGroupsInput | PostCreateOrConnectWithoutGroupsInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutGroupsInput | PostUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutGroupsInput | PostUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutGroupsInput | PostUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FileCreateWithoutGroupsInput | FileCreateWithoutGroupsInput[] | FileUncheckedCreateWithoutGroupsInput | FileUncheckedCreateWithoutGroupsInput[] | No |
| connectOrCreate | FileCreateOrConnectWithoutGroupsInput | FileCreateOrConnectWithoutGroupsInput[] | No |
| upsert | FileUpsertWithWhereUniqueWithoutGroupsInput | FileUpsertWithWhereUniqueWithoutGroupsInput[] | No |
| set | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| disconnect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| delete | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| connect | FileWhereUniqueInput | FileWhereUniqueInput[] | No |
| update | FileUpdateWithWhereUniqueWithoutGroupsInput | FileUpdateWithWhereUniqueWithoutGroupsInput[] | No |
| updateMany | FileUpdateManyWithWhereWithoutGroupsInput | FileUpdateManyWithWhereWithoutGroupsInput[] | No |
| deleteMany | FileScalarWhereInput | FileScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTodosAuthorInput | UserUncheckedCreateWithoutTodosAuthorInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTodosAuthorInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutTodosInput | OrganizationUncheckedCreateWithoutTodosInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutTodosInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutTodosInput | GroupCreateWithoutTodosInput[] | GroupUncheckedCreateWithoutTodosInput | GroupUncheckedCreateWithoutTodosInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutTodosInput | GroupCreateOrConnectWithoutTodosInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutSubTodosInput | TodoUncheckedCreateWithoutSubTodosInput | No |
| connectOrCreate | TodoCreateOrConnectWithoutSubTodosInput | No |
| connect | TodoWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutMainTodoInput | TodoCreateWithoutMainTodoInput[] | TodoUncheckedCreateWithoutMainTodoInput | TodoUncheckedCreateWithoutMainTodoInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutMainTodoInput | TodoCreateOrConnectWithoutMainTodoInput[] | No |
| createMany | TodoCreateManyMainTodoInputEnvelope | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserTodoLinkCreateWithoutTodoInput | UserTodoLinkCreateWithoutTodoInput[] | UserTodoLinkUncheckedCreateWithoutTodoInput | UserTodoLinkUncheckedCreateWithoutTodoInput[] | No |
| connectOrCreate | UserTodoLinkCreateOrConnectWithoutTodoInput | UserTodoLinkCreateOrConnectWithoutTodoInput[] | No |
| createMany | UserTodoLinkCreateManyTodoInputEnvelope | No |
| connect | UserTodoLinkWhereUniqueInput | UserTodoLinkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutTodoInput | TaskCreateWithoutTodoInput[] | TaskUncheckedCreateWithoutTodoInput | TaskUncheckedCreateWithoutTodoInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutTodoInput | TaskCreateOrConnectWithoutTodoInput[] | No |
| createMany | TaskCreateManyTodoInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutTodosInput | GroupCreateWithoutTodosInput[] | GroupUncheckedCreateWithoutTodosInput | GroupUncheckedCreateWithoutTodosInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutTodosInput | GroupCreateOrConnectWithoutTodosInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutMainTodoInput | TodoCreateWithoutMainTodoInput[] | TodoUncheckedCreateWithoutMainTodoInput | TodoUncheckedCreateWithoutMainTodoInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutMainTodoInput | TodoCreateOrConnectWithoutMainTodoInput[] | No |
| createMany | TodoCreateManyMainTodoInputEnvelope | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserTodoLinkCreateWithoutTodoInput | UserTodoLinkCreateWithoutTodoInput[] | UserTodoLinkUncheckedCreateWithoutTodoInput | UserTodoLinkUncheckedCreateWithoutTodoInput[] | No |
| connectOrCreate | UserTodoLinkCreateOrConnectWithoutTodoInput | UserTodoLinkCreateOrConnectWithoutTodoInput[] | No |
| createMany | UserTodoLinkCreateManyTodoInputEnvelope | No |
| connect | UserTodoLinkWhereUniqueInput | UserTodoLinkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutTodoInput | TaskCreateWithoutTodoInput[] | TaskUncheckedCreateWithoutTodoInput | TaskUncheckedCreateWithoutTodoInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutTodoInput | TaskCreateOrConnectWithoutTodoInput[] | No |
| createMany | TaskCreateManyTodoInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | TodoState | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTodosAuthorInput | UserUncheckedCreateWithoutTodosAuthorInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTodosAuthorInput | No |
| upsert | UserUpsertWithoutTodosAuthorInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTodosAuthorInput | UserUpdateWithoutTodosAuthorInput | UserUncheckedUpdateWithoutTodosAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutTodosInput | OrganizationUncheckedCreateWithoutTodosInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutTodosInput | No |
| upsert | OrganizationUpsertWithoutTodosInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutTodosInput | OrganizationUpdateWithoutTodosInput | OrganizationUncheckedUpdateWithoutTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutTodosInput | GroupCreateWithoutTodosInput[] | GroupUncheckedCreateWithoutTodosInput | GroupUncheckedCreateWithoutTodosInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutTodosInput | GroupCreateOrConnectWithoutTodosInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutTodosInput | GroupUpsertWithWhereUniqueWithoutTodosInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutTodosInput | GroupUpdateWithWhereUniqueWithoutTodosInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutTodosInput | GroupUpdateManyWithWhereWithoutTodosInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutSubTodosInput | TodoUncheckedCreateWithoutSubTodosInput | No |
| connectOrCreate | TodoCreateOrConnectWithoutSubTodosInput | No |
| upsert | TodoUpsertWithoutSubTodosInput | No |
| disconnect | Boolean | TodoWhereInput | No |
| delete | Boolean | TodoWhereInput | No |
| connect | TodoWhereUniqueInput | No |
| update | TodoUpdateToOneWithWhereWithoutSubTodosInput | TodoUpdateWithoutSubTodosInput | TodoUncheckedUpdateWithoutSubTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutMainTodoInput | TodoCreateWithoutMainTodoInput[] | TodoUncheckedCreateWithoutMainTodoInput | TodoUncheckedCreateWithoutMainTodoInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutMainTodoInput | TodoCreateOrConnectWithoutMainTodoInput[] | No |
| upsert | TodoUpsertWithWhereUniqueWithoutMainTodoInput | TodoUpsertWithWhereUniqueWithoutMainTodoInput[] | No |
| createMany | TodoCreateManyMainTodoInputEnvelope | No |
| set | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| disconnect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| delete | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| update | TodoUpdateWithWhereUniqueWithoutMainTodoInput | TodoUpdateWithWhereUniqueWithoutMainTodoInput[] | No |
| updateMany | TodoUpdateManyWithWhereWithoutMainTodoInput | TodoUpdateManyWithWhereWithoutMainTodoInput[] | No |
| deleteMany | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutTodoInput | TaskCreateWithoutTodoInput[] | TaskUncheckedCreateWithoutTodoInput | TaskUncheckedCreateWithoutTodoInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutTodoInput | TaskCreateOrConnectWithoutTodoInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutTodoInput | TaskUpsertWithWhereUniqueWithoutTodoInput[] | No |
| createMany | TaskCreateManyTodoInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutTodoInput | TaskUpdateWithWhereUniqueWithoutTodoInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutTodoInput | TaskUpdateManyWithWhereWithoutTodoInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutTodosInput | GroupCreateWithoutTodosInput[] | GroupUncheckedCreateWithoutTodosInput | GroupUncheckedCreateWithoutTodosInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutTodosInput | GroupCreateOrConnectWithoutTodosInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutTodosInput | GroupUpsertWithWhereUniqueWithoutTodosInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutTodosInput | GroupUpdateWithWhereUniqueWithoutTodosInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutTodosInput | GroupUpdateManyWithWhereWithoutTodosInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutMainTodoInput | TodoCreateWithoutMainTodoInput[] | TodoUncheckedCreateWithoutMainTodoInput | TodoUncheckedCreateWithoutMainTodoInput[] | No |
| connectOrCreate | TodoCreateOrConnectWithoutMainTodoInput | TodoCreateOrConnectWithoutMainTodoInput[] | No |
| upsert | TodoUpsertWithWhereUniqueWithoutMainTodoInput | TodoUpsertWithWhereUniqueWithoutMainTodoInput[] | No |
| createMany | TodoCreateManyMainTodoInputEnvelope | No |
| set | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| disconnect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| delete | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| connect | TodoWhereUniqueInput | TodoWhereUniqueInput[] | No |
| update | TodoUpdateWithWhereUniqueWithoutMainTodoInput | TodoUpdateWithWhereUniqueWithoutMainTodoInput[] | No |
| updateMany | TodoUpdateManyWithWhereWithoutMainTodoInput | TodoUpdateManyWithWhereWithoutMainTodoInput[] | No |
| deleteMany | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutTodoInput | TaskCreateWithoutTodoInput[] | TaskUncheckedCreateWithoutTodoInput | TaskUncheckedCreateWithoutTodoInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutTodoInput | TaskCreateOrConnectWithoutTodoInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutTodoInput | TaskUpsertWithWhereUniqueWithoutTodoInput[] | No |
| createMany | TaskCreateManyTodoInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutTodoInput | TaskUpdateWithWhereUniqueWithoutTodoInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutTodoInput | TaskUpdateManyWithWhereWithoutTodoInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTodoInput | UserUncheckedCreateWithoutTodoInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTodoInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutUsersInput | TodoUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | TodoCreateOrConnectWithoutUsersInput | No |
| connect | TodoWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTodoInput | UserUncheckedCreateWithoutTodoInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTodoInput | No |
| upsert | UserUpsertWithoutTodoInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTodoInput | UserUpdateWithoutTodoInput | UserUncheckedUpdateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutUsersInput | TodoUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | TodoCreateOrConnectWithoutUsersInput | No |
| upsert | TodoUpsertWithoutUsersInput | No |
| connect | TodoWhereUniqueInput | No |
| update | TodoUpdateToOneWithWhereWithoutUsersInput | TodoUpdateWithoutUsersInput | TodoUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTasksAuthorInput | UserUncheckedCreateWithoutTasksAuthorInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTasksAuthorInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutTasksInput | OrganizationUncheckedCreateWithoutTasksInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutTasksInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutTasksInput | GroupCreateWithoutTasksInput[] | GroupUncheckedCreateWithoutTasksInput | GroupUncheckedCreateWithoutTasksInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutTasksInput | GroupCreateOrConnectWithoutTasksInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutSubTasksInput | TaskUncheckedCreateWithoutSubTasksInput | No |
| connectOrCreate | TaskCreateOrConnectWithoutSubTasksInput | No |
| connect | TaskWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutMainTaskInput | TaskCreateWithoutMainTaskInput[] | TaskUncheckedCreateWithoutMainTaskInput | TaskUncheckedCreateWithoutMainTaskInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutMainTaskInput | TaskCreateOrConnectWithoutMainTaskInput[] | No |
| createMany | TaskCreateManyMainTaskInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserTaskLinkCreateWithoutTaskInput | UserTaskLinkCreateWithoutTaskInput[] | UserTaskLinkUncheckedCreateWithoutTaskInput | UserTaskLinkUncheckedCreateWithoutTaskInput[] | No |
| connectOrCreate | UserTaskLinkCreateOrConnectWithoutTaskInput | UserTaskLinkCreateOrConnectWithoutTaskInput[] | No |
| createMany | UserTaskLinkCreateManyTaskInputEnvelope | No |
| connect | UserTaskLinkWhereUniqueInput | UserTaskLinkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutTasksInput | TodoUncheckedCreateWithoutTasksInput | No |
| connectOrCreate | TodoCreateOrConnectWithoutTasksInput | No |
| connect | TodoWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutTasksInput | GroupCreateWithoutTasksInput[] | GroupUncheckedCreateWithoutTasksInput | GroupUncheckedCreateWithoutTasksInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutTasksInput | GroupCreateOrConnectWithoutTasksInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutMainTaskInput | TaskCreateWithoutMainTaskInput[] | TaskUncheckedCreateWithoutMainTaskInput | TaskUncheckedCreateWithoutMainTaskInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutMainTaskInput | TaskCreateOrConnectWithoutMainTaskInput[] | No |
| createMany | TaskCreateManyMainTaskInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserTaskLinkCreateWithoutTaskInput | UserTaskLinkCreateWithoutTaskInput[] | UserTaskLinkUncheckedCreateWithoutTaskInput | UserTaskLinkUncheckedCreateWithoutTaskInput[] | No |
| connectOrCreate | UserTaskLinkCreateOrConnectWithoutTaskInput | UserTaskLinkCreateOrConnectWithoutTaskInput[] | No |
| createMany | UserTaskLinkCreateManyTaskInputEnvelope | No |
| connect | UserTaskLinkWhereUniqueInput | UserTaskLinkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | TaskState | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTasksAuthorInput | UserUncheckedCreateWithoutTasksAuthorInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTasksAuthorInput | No |
| upsert | UserUpsertWithoutTasksAuthorInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTasksAuthorInput | UserUpdateWithoutTasksAuthorInput | UserUncheckedUpdateWithoutTasksAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutTasksInput | OrganizationUncheckedCreateWithoutTasksInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutTasksInput | No |
| upsert | OrganizationUpsertWithoutTasksInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutTasksInput | OrganizationUpdateWithoutTasksInput | OrganizationUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutTasksInput | GroupCreateWithoutTasksInput[] | GroupUncheckedCreateWithoutTasksInput | GroupUncheckedCreateWithoutTasksInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutTasksInput | GroupCreateOrConnectWithoutTasksInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutTasksInput | GroupUpsertWithWhereUniqueWithoutTasksInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutTasksInput | GroupUpdateWithWhereUniqueWithoutTasksInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutTasksInput | GroupUpdateManyWithWhereWithoutTasksInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutSubTasksInput | TaskUncheckedCreateWithoutSubTasksInput | No |
| connectOrCreate | TaskCreateOrConnectWithoutSubTasksInput | No |
| upsert | TaskUpsertWithoutSubTasksInput | No |
| disconnect | Boolean | TaskWhereInput | No |
| delete | Boolean | TaskWhereInput | No |
| connect | TaskWhereUniqueInput | No |
| update | TaskUpdateToOneWithWhereWithoutSubTasksInput | TaskUpdateWithoutSubTasksInput | TaskUncheckedUpdateWithoutSubTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutMainTaskInput | TaskCreateWithoutMainTaskInput[] | TaskUncheckedCreateWithoutMainTaskInput | TaskUncheckedCreateWithoutMainTaskInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutMainTaskInput | TaskCreateOrConnectWithoutMainTaskInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutMainTaskInput | TaskUpsertWithWhereUniqueWithoutMainTaskInput[] | No |
| createMany | TaskCreateManyMainTaskInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutMainTaskInput | TaskUpdateWithWhereUniqueWithoutMainTaskInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutMainTaskInput | TaskUpdateManyWithWhereWithoutMainTaskInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TodoCreateWithoutTasksInput | TodoUncheckedCreateWithoutTasksInput | No |
| connectOrCreate | TodoCreateOrConnectWithoutTasksInput | No |
| upsert | TodoUpsertWithoutTasksInput | No |
| disconnect | Boolean | TodoWhereInput | No |
| delete | Boolean | TodoWhereInput | No |
| connect | TodoWhereUniqueInput | No |
| update | TodoUpdateToOneWithWhereWithoutTasksInput | TodoUpdateWithoutTasksInput | TodoUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutTasksInput | GroupCreateWithoutTasksInput[] | GroupUncheckedCreateWithoutTasksInput | GroupUncheckedCreateWithoutTasksInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutTasksInput | GroupCreateOrConnectWithoutTasksInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutTasksInput | GroupUpsertWithWhereUniqueWithoutTasksInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutTasksInput | GroupUpdateWithWhereUniqueWithoutTasksInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutTasksInput | GroupUpdateManyWithWhereWithoutTasksInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutMainTaskInput | TaskCreateWithoutMainTaskInput[] | TaskUncheckedCreateWithoutMainTaskInput | TaskUncheckedCreateWithoutMainTaskInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutMainTaskInput | TaskCreateOrConnectWithoutMainTaskInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutMainTaskInput | TaskUpsertWithWhereUniqueWithoutMainTaskInput[] | No |
| createMany | TaskCreateManyMainTaskInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutMainTaskInput | TaskUpdateWithWhereUniqueWithoutMainTaskInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutMainTaskInput | TaskUpdateManyWithWhereWithoutMainTaskInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTasksInput | UserUncheckedCreateWithoutTasksInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTasksInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutUsersInput | TaskUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | TaskCreateOrConnectWithoutUsersInput | No |
| connect | TaskWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTasksInput | UserUncheckedCreateWithoutTasksInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTasksInput | No |
| upsert | UserUpsertWithoutTasksInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTasksInput | UserUpdateWithoutTasksInput | UserUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutUsersInput | TaskUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | TaskCreateOrConnectWithoutUsersInput | No |
| upsert | TaskUpsertWithoutUsersInput | No |
| connect | TaskWhereUniqueInput | No |
| update | TaskUpdateToOneWithWhereWithoutUsersInput | TaskUpdateWithoutUsersInput | TaskUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPostsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutPostsInput | OrganizationUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutPostsInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutPostsInput | GroupCreateWithoutPostsInput[] | GroupUncheckedCreateWithoutPostsInput | GroupUncheckedCreateWithoutPostsInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutPostsInput | GroupCreateOrConnectWithoutPostsInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutPostsInput | CategoryCreateWithoutPostsInput[] | CategoryUncheckedCreateWithoutPostsInput | CategoryUncheckedCreateWithoutPostsInput[] | No |
| connectOrCreate | CategoryCreateOrConnectWithoutPostsInput | CategoryCreateOrConnectWithoutPostsInput[] | No |
| connect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] | No |
| createMany | CommentCreateManyPostInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostLikeCreateWithoutPostInput | PostLikeCreateWithoutPostInput[] | PostLikeUncheckedCreateWithoutPostInput | PostLikeUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | PostLikeCreateOrConnectWithoutPostInput | PostLikeCreateOrConnectWithoutPostInput[] | No |
| createMany | PostLikeCreateManyPostInputEnvelope | No |
| connect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutPostsInput | GroupCreateWithoutPostsInput[] | GroupUncheckedCreateWithoutPostsInput | GroupUncheckedCreateWithoutPostsInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutPostsInput | GroupCreateOrConnectWithoutPostsInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutPostsInput | CategoryCreateWithoutPostsInput[] | CategoryUncheckedCreateWithoutPostsInput | CategoryUncheckedCreateWithoutPostsInput[] | No |
| connectOrCreate | CategoryCreateOrConnectWithoutPostsInput | CategoryCreateOrConnectWithoutPostsInput[] | No |
| connect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] | No |
| createMany | CommentCreateManyPostInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostLikeCreateWithoutPostInput | PostLikeCreateWithoutPostInput[] | PostLikeUncheckedCreateWithoutPostInput | PostLikeUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | PostLikeCreateOrConnectWithoutPostInput | PostLikeCreateOrConnectWithoutPostInput[] | No |
| createMany | PostLikeCreateManyPostInputEnvelope | No |
| connect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPostsInput | No |
| upsert | UserUpsertWithoutPostsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutPostsInput | UserUpdateWithoutPostsInput | UserUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutPostsInput | OrganizationUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutPostsInput | No |
| upsert | OrganizationUpsertWithoutPostsInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutPostsInput | OrganizationUpdateWithoutPostsInput | OrganizationUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutPostsInput | GroupCreateWithoutPostsInput[] | GroupUncheckedCreateWithoutPostsInput | GroupUncheckedCreateWithoutPostsInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutPostsInput | GroupCreateOrConnectWithoutPostsInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutPostsInput | GroupUpsertWithWhereUniqueWithoutPostsInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutPostsInput | GroupUpdateWithWhereUniqueWithoutPostsInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutPostsInput | GroupUpdateManyWithWhereWithoutPostsInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutPostInput | CommentUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | CommentCreateManyPostInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutPostInput | CommentUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutPostInput | CommentUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostLikeCreateWithoutPostInput | PostLikeCreateWithoutPostInput[] | PostLikeUncheckedCreateWithoutPostInput | PostLikeUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | PostLikeCreateOrConnectWithoutPostInput | PostLikeCreateOrConnectWithoutPostInput[] | No |
| upsert | PostLikeUpsertWithWhereUniqueWithoutPostInput | PostLikeUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | PostLikeCreateManyPostInputEnvelope | No |
| set | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| disconnect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| delete | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| connect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| update | PostLikeUpdateWithWhereUniqueWithoutPostInput | PostLikeUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | PostLikeUpdateManyWithWhereWithoutPostInput | PostLikeUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | PostLikeScalarWhereInput | PostLikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutPostsInput | GroupCreateWithoutPostsInput[] | GroupUncheckedCreateWithoutPostsInput | GroupUncheckedCreateWithoutPostsInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutPostsInput | GroupCreateOrConnectWithoutPostsInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutPostsInput | GroupUpsertWithWhereUniqueWithoutPostsInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutPostsInput | GroupUpdateWithWhereUniqueWithoutPostsInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutPostsInput | GroupUpdateManyWithWhereWithoutPostsInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutPostInput | CommentUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | CommentCreateManyPostInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutPostInput | CommentUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutPostInput | CommentUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostLikeCreateWithoutPostInput | PostLikeCreateWithoutPostInput[] | PostLikeUncheckedCreateWithoutPostInput | PostLikeUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | PostLikeCreateOrConnectWithoutPostInput | PostLikeCreateOrConnectWithoutPostInput[] | No |
| upsert | PostLikeUpsertWithWhereUniqueWithoutPostInput | PostLikeUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | PostLikeCreateManyPostInputEnvelope | No |
| set | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| disconnect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| delete | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| connect | PostLikeWhereUniqueInput | PostLikeWhereUniqueInput[] | No |
| update | PostLikeUpdateWithWhereUniqueWithoutPostInput | PostLikeUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | PostLikeUpdateManyWithWhereWithoutPostInput | PostLikeUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | PostLikeScalarWhereInput | PostLikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCategoriesInput | PostCreateWithoutCategoriesInput[] | PostUncheckedCreateWithoutCategoriesInput | PostUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutCategoriesInput | PostCreateOrConnectWithoutCategoriesInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCategoriesInput | PostCreateWithoutCategoriesInput[] | PostUncheckedCreateWithoutCategoriesInput | PostUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutCategoriesInput | PostCreateOrConnectWithoutCategoriesInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCategoriesInput | PostCreateWithoutCategoriesInput[] | PostUncheckedCreateWithoutCategoriesInput | PostUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutCategoriesInput | PostCreateOrConnectWithoutCategoriesInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutCategoriesInput | PostUpsertWithWhereUniqueWithoutCategoriesInput[] | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutCategoriesInput | PostUpdateWithWhereUniqueWithoutCategoriesInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutCategoriesInput | PostUpdateManyWithWhereWithoutCategoriesInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCategoriesInput | PostCreateWithoutCategoriesInput[] | PostUncheckedCreateWithoutCategoriesInput | PostUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutCategoriesInput | PostCreateOrConnectWithoutCategoriesInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutCategoriesInput | PostUpsertWithWhereUniqueWithoutCategoriesInput[] | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutCategoriesInput | PostUpdateWithWhereUniqueWithoutCategoriesInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutCategoriesInput | PostUpdateManyWithWhereWithoutCategoriesInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutCommentsInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutCommentsInput | No |
| upsert | PostUpsertWithoutCommentsInput | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateToOneWithWhereWithoutCommentsInput | PostUpdateWithoutCommentsInput | PostUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommentsInput | No |
| upsert | UserUpsertWithoutCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutCommentsInput | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFilesInput | UserUncheckedCreateWithoutFilesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFilesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutFilesInput | OrganizationUncheckedCreateWithoutFilesInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutFilesInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutFilesInput | GroupCreateWithoutFilesInput[] | GroupUncheckedCreateWithoutFilesInput | GroupUncheckedCreateWithoutFilesInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutFilesInput | GroupCreateOrConnectWithoutFilesInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutFilesInput | GroupCreateWithoutFilesInput[] | GroupUncheckedCreateWithoutFilesInput | GroupUncheckedCreateWithoutFilesInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutFilesInput | GroupCreateOrConnectWithoutFilesInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFilesInput | UserUncheckedCreateWithoutFilesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFilesInput | No |
| upsert | UserUpsertWithoutFilesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutFilesInput | UserUpdateWithoutFilesInput | UserUncheckedUpdateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutFilesInput | OrganizationUncheckedCreateWithoutFilesInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutFilesInput | No |
| upsert | OrganizationUpsertWithoutFilesInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutFilesInput | OrganizationUpdateWithoutFilesInput | OrganizationUncheckedUpdateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutFilesInput | GroupCreateWithoutFilesInput[] | GroupUncheckedCreateWithoutFilesInput | GroupUncheckedCreateWithoutFilesInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutFilesInput | GroupCreateOrConnectWithoutFilesInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutFilesInput | GroupUpsertWithWhereUniqueWithoutFilesInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutFilesInput | GroupUpdateWithWhereUniqueWithoutFilesInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutFilesInput | GroupUpdateManyWithWhereWithoutFilesInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GroupCreateWithoutFilesInput | GroupCreateWithoutFilesInput[] | GroupUncheckedCreateWithoutFilesInput | GroupUncheckedCreateWithoutFilesInput[] | No |
| connectOrCreate | GroupCreateOrConnectWithoutFilesInput | GroupCreateOrConnectWithoutFilesInput[] | No |
| upsert | GroupUpsertWithWhereUniqueWithoutFilesInput | GroupUpsertWithWhereUniqueWithoutFilesInput[] | No |
| set | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| disconnect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| delete | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| connect | GroupWhereUniqueInput | GroupWhereUniqueInput[] | No |
| update | GroupUpdateWithWhereUniqueWithoutFilesInput | GroupUpdateWithWhereUniqueWithoutFilesInput[] | No |
| updateMany | GroupUpdateManyWithWhereWithoutFilesInput | GroupUpdateManyWithWhereWithoutFilesInput[] | No |
| deleteMany | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowersInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingsInput | UserUncheckedCreateWithoutFollowingsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowersInput | No |
| upsert | UserUpsertWithoutFollowersInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutFollowersInput | UserUpdateWithoutFollowersInput | UserUncheckedUpdateWithoutFollowersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingsInput | UserUncheckedCreateWithoutFollowingsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingsInput | No |
| upsert | UserUpsertWithoutFollowingsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutFollowingsInput | UserUpdateWithoutFollowingsInput | UserUncheckedUpdateWithoutFollowingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPosts_likedInput | UserUncheckedCreateWithoutPosts_likedInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPosts_likedInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutLikedBysInput | PostUncheckedCreateWithoutLikedBysInput | No |
| connectOrCreate | PostCreateOrConnectWithoutLikedBysInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPosts_likedInput | UserUncheckedCreateWithoutPosts_likedInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPosts_likedInput | No |
| upsert | UserUpsertWithoutPosts_likedInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutPosts_likedInput | UserUpdateWithoutPosts_likedInput | UserUncheckedUpdateWithoutPosts_likedInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutLikedBysInput | PostUncheckedCreateWithoutLikedBysInput | No |
| connectOrCreate | PostCreateOrConnectWithoutLikedBysInput | No |
| upsert | PostUpsertWithoutLikedBysInput | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateToOneWithWhereWithoutLikedBysInput | PostUpdateWithoutLikedBysInput | PostUncheckedUpdateWithoutLikedBysInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutStoriesInput | UserUncheckedCreateWithoutStoriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutStoriesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutStoriesInput | UserUncheckedCreateWithoutStoriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutStoriesInput | No |
| upsert | UserUpsertWithoutStoriesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutStoriesInput | UserUpdateWithoutStoriesInput | UserUncheckedUpdateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgEmailCreateWithoutOrgEmailUseTosInput | OrgEmailUncheckedCreateWithoutOrgEmailUseTosInput | No |
| connectOrCreate | OrgEmailCreateOrConnectWithoutOrgEmailUseTosInput | No |
| connect | OrgEmailWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrgEmailCreateWithoutOrgEmailUseTosInput | OrgEmailUncheckedCreateWithoutOrgEmailUseTosInput | No |
| connectOrCreate | OrgEmailCreateOrConnectWithoutOrgEmailUseTosInput | No |
| upsert | OrgEmailUpsertWithoutOrgEmailUseTosInput | No |
| connect | OrgEmailWhereUniqueInput | No |
| update | OrgEmailUpdateToOneWithWhereWithoutOrgEmailUseTosInput | OrgEmailUpdateWithoutOrgEmailUseTosInput | OrgEmailUncheckedUpdateWithoutOrgEmailUseTosInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutApiKeysInput | UserUncheckedCreateWithoutApiKeysInput | No |
| connectOrCreate | UserCreateOrConnectWithoutApiKeysInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ScopeCreateWithoutApiKeyInput | ScopeCreateWithoutApiKeyInput[] | ScopeUncheckedCreateWithoutApiKeyInput | ScopeUncheckedCreateWithoutApiKeyInput[] | No |
| connectOrCreate | ScopeCreateOrConnectWithoutApiKeyInput | ScopeCreateOrConnectWithoutApiKeyInput[] | No |
| connect | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ScopeCreateWithoutApiKeyInput | ScopeCreateWithoutApiKeyInput[] | ScopeUncheckedCreateWithoutApiKeyInput | ScopeUncheckedCreateWithoutApiKeyInput[] | No |
| connectOrCreate | ScopeCreateOrConnectWithoutApiKeyInput | ScopeCreateOrConnectWithoutApiKeyInput[] | No |
| connect | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutApiKeysInput | UserUncheckedCreateWithoutApiKeysInput | No |
| connectOrCreate | UserCreateOrConnectWithoutApiKeysInput | No |
| upsert | UserUpsertWithoutApiKeysInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutApiKeysInput | UserUpdateWithoutApiKeysInput | UserUncheckedUpdateWithoutApiKeysInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ScopeCreateWithoutApiKeyInput | ScopeCreateWithoutApiKeyInput[] | ScopeUncheckedCreateWithoutApiKeyInput | ScopeUncheckedCreateWithoutApiKeyInput[] | No |
| connectOrCreate | ScopeCreateOrConnectWithoutApiKeyInput | ScopeCreateOrConnectWithoutApiKeyInput[] | No |
| upsert | ScopeUpsertWithWhereUniqueWithoutApiKeyInput | ScopeUpsertWithWhereUniqueWithoutApiKeyInput[] | No |
| set | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| disconnect | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| delete | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| connect | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| update | ScopeUpdateWithWhereUniqueWithoutApiKeyInput | ScopeUpdateWithWhereUniqueWithoutApiKeyInput[] | No |
| updateMany | ScopeUpdateManyWithWhereWithoutApiKeyInput | ScopeUpdateManyWithWhereWithoutApiKeyInput[] | No |
| deleteMany | ScopeScalarWhereInput | ScopeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ScopeCreateWithoutApiKeyInput | ScopeCreateWithoutApiKeyInput[] | ScopeUncheckedCreateWithoutApiKeyInput | ScopeUncheckedCreateWithoutApiKeyInput[] | No |
| connectOrCreate | ScopeCreateOrConnectWithoutApiKeyInput | ScopeCreateOrConnectWithoutApiKeyInput[] | No |
| upsert | ScopeUpsertWithWhereUniqueWithoutApiKeyInput | ScopeUpsertWithWhereUniqueWithoutApiKeyInput[] | No |
| set | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| disconnect | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| delete | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| connect | ScopeWhereUniqueInput | ScopeWhereUniqueInput[] | No |
| update | ScopeUpdateWithWhereUniqueWithoutApiKeyInput | ScopeUpdateWithWhereUniqueWithoutApiKeyInput[] | No |
| updateMany | ScopeUpdateManyWithWhereWithoutApiKeyInput | ScopeUpdateManyWithWhereWithoutApiKeyInput[] | No |
| deleteMany | ScopeScalarWhereInput | ScopeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApiKeyCreateWithoutScopesInput | ApiKeyCreateWithoutScopesInput[] | ApiKeyUncheckedCreateWithoutScopesInput | ApiKeyUncheckedCreateWithoutScopesInput[] | No |
| connectOrCreate | ApiKeyCreateOrConnectWithoutScopesInput | ApiKeyCreateOrConnectWithoutScopesInput[] | No |
| connect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApiKeyCreateWithoutScopesInput | ApiKeyCreateWithoutScopesInput[] | ApiKeyUncheckedCreateWithoutScopesInput | ApiKeyUncheckedCreateWithoutScopesInput[] | No |
| connectOrCreate | ApiKeyCreateOrConnectWithoutScopesInput | ApiKeyCreateOrConnectWithoutScopesInput[] | No |
| connect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApiKeyCreateWithoutScopesInput | ApiKeyCreateWithoutScopesInput[] | ApiKeyUncheckedCreateWithoutScopesInput | ApiKeyUncheckedCreateWithoutScopesInput[] | No |
| connectOrCreate | ApiKeyCreateOrConnectWithoutScopesInput | ApiKeyCreateOrConnectWithoutScopesInput[] | No |
| upsert | ApiKeyUpsertWithWhereUniqueWithoutScopesInput | ApiKeyUpsertWithWhereUniqueWithoutScopesInput[] | No |
| set | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| disconnect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| delete | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| connect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| update | ApiKeyUpdateWithWhereUniqueWithoutScopesInput | ApiKeyUpdateWithWhereUniqueWithoutScopesInput[] | No |
| updateMany | ApiKeyUpdateManyWithWhereWithoutScopesInput | ApiKeyUpdateManyWithWhereWithoutScopesInput[] | No |
| deleteMany | ApiKeyScalarWhereInput | ApiKeyScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApiKeyCreateWithoutScopesInput | ApiKeyCreateWithoutScopesInput[] | ApiKeyUncheckedCreateWithoutScopesInput | ApiKeyUncheckedCreateWithoutScopesInput[] | No |
| connectOrCreate | ApiKeyCreateOrConnectWithoutScopesInput | ApiKeyCreateOrConnectWithoutScopesInput[] | No |
| upsert | ApiKeyUpsertWithWhereUniqueWithoutScopesInput | ApiKeyUpsertWithWhereUniqueWithoutScopesInput[] | No |
| set | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| disconnect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| delete | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| connect | ApiKeyWhereUniqueInput | ApiKeyWhereUniqueInput[] | No |
| update | ApiKeyUpdateWithWhereUniqueWithoutScopesInput | ApiKeyUpdateWithWhereUniqueWithoutScopesInput[] | No |
| updateMany | ApiKeyUpdateManyWithWhereWithoutScopesInput | ApiKeyUpdateManyWithWhereWithoutScopesInput[] | No |
| deleteMany | ApiKeyScalarWhereInput | ApiKeyScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTokensInput | UserUncheckedCreateWithoutTokensInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTokensInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | TokenType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTokensInput | UserUncheckedCreateWithoutTokensInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTokensInput | No |
| upsert | UserUpsertWithoutTokensInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTokensInput | UserUpdateWithoutTokensInput | UserUncheckedUpdateWithoutTokensInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChangesLogsInput | UserUncheckedCreateWithoutChangesLogsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChangesLogsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChangesLogsInput | UserUncheckedCreateWithoutChangesLogsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChangesLogsInput | No |
| upsert | UserUpsertWithoutChangesLogsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutChangesLogsInput | UserUpdateWithoutChangesLogsInput | UserUncheckedUpdateWithoutChangesLogsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Title | EnumTitleFieldRefInput | Null | Yes |
| in | Title[] | ListEnumTitleFieldRefInput | Null | Yes |
| notIn | Title[] | ListEnumTitleFieldRefInput | Null | Yes |
| not | Title | NestedEnumTitleNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Language | EnumLanguageFieldRefInput | Null | Yes |
| in | Language[] | ListEnumLanguageFieldRefInput | Null | Yes |
| notIn | Language[] | ListEnumLanguageFieldRefInput | Null | Yes |
| not | Language | NestedEnumLanguageNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Title | EnumTitleFieldRefInput | Null | Yes |
| in | Title[] | ListEnumTitleFieldRefInput | Null | Yes |
| notIn | Title[] | ListEnumTitleFieldRefInput | Null | Yes |
| not | Title | NestedEnumTitleNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumTitleNullableFilter | No |
| _max | NestedEnumTitleNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumGenderNullableFilter | No |
| _max | NestedEnumGenderNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Language | EnumLanguageFieldRefInput | Null | Yes |
| in | Language[] | ListEnumLanguageFieldRefInput | Null | Yes |
| notIn | Language[] | ListEnumLanguageFieldRefInput | Null | Yes |
| not | Language | NestedEnumLanguageNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumLanguageNullableFilter | No |
| _max | NestedEnumLanguageNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TodoState | EnumTodoStateFieldRefInput | No |
| in | TodoState[] | ListEnumTodoStateFieldRefInput | No |
| notIn | TodoState[] | ListEnumTodoStateFieldRefInput | No |
| not | TodoState | NestedEnumTodoStateFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TodoState | EnumTodoStateFieldRefInput | No |
| in | TodoState[] | ListEnumTodoStateFieldRefInput | No |
| notIn | TodoState[] | ListEnumTodoStateFieldRefInput | No |
| not | TodoState | NestedEnumTodoStateWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTodoStateFilter | No |
| _max | NestedEnumTodoStateFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskState | EnumTaskStateFieldRefInput | No |
| in | TaskState[] | ListEnumTaskStateFieldRefInput | No |
| notIn | TaskState[] | ListEnumTaskStateFieldRefInput | No |
| not | TaskState | NestedEnumTaskStateFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskState | EnumTaskStateFieldRefInput | No |
| in | TaskState[] | ListEnumTaskStateFieldRefInput | No |
| notIn | TaskState[] | ListEnumTaskStateFieldRefInput | No |
| not | TaskState | NestedEnumTaskStateWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTaskStateFilter | No |
| _max | NestedEnumTaskStateFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TokenType | EnumTokenTypeFieldRefInput | No |
| in | TokenType[] | ListEnumTokenTypeFieldRefInput | No |
| notIn | TokenType[] | ListEnumTokenTypeFieldRefInput | No |
| not | TokenType | NestedEnumTokenTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TokenType | EnumTokenTypeFieldRefInput | No |
| in | TokenType[] | ListEnumTokenTypeFieldRefInput | No |
| notIn | TokenType[] | ListEnumTokenTypeFieldRefInput | No |
| not | TokenType | NestedEnumTokenTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTokenTypeFilter | No |
| _max | NestedEnumTokenTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| description | String | Null | Yes |
| OrgEmailUseTos | OrgEmailUseToCreateNestedManyWithoutEmailOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| description | String | Null | Yes |
| OrgEmailUseTos | OrgEmailUseToUncheckedCreateNestedManyWithoutEmailOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailWhereUniqueInput | No |
| create | OrgEmailCreateWithoutOrgInput | OrgEmailUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrgEmailCreateManyOrgInput | OrgEmailCreateManyOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domainName | String | No |
| extension | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domainName | String | No |
| extension | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgDomainWhereUniqueInput | No |
| create | OrgDomainCreateWithoutOrgInput | OrgDomainUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrgDomainCreateManyOrgInput | OrgDomainCreateManyOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutOrgEntityInput | OrganizationUncheckedCreateWithoutOrgEntityInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutMainOrgInput | OrganizationUncheckedCreateWithoutMainOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrganizationCreateManyMainOrgInput | OrganizationCreateManyMainOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutOrgsInput | UserUncheckedCreateWithoutOrgsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| owner | UserCreateNestedOneWithoutPostsInput | No |
| groups | GroupCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryCreateNestedManyWithoutPostsInput | No |
| Comments | CommentCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryUncheckedCreateNestedManyWithoutPostsInput | No |
| Comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutOrgInput | PostUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostCreateManyOrgInput | PostCreateManyOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Users | UserCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoCreateNestedManyWithoutGroupsInput | No |
| Posts | PostCreateNestedManyWithoutGroupsInput | No |
| Files | FileCreateNestedManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Users | UserUncheckedCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutGroupsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutGroupsInput | No |
| Files | FileUncheckedCreateNestedManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| create | GroupCreateWithoutOrgInput | GroupUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | GroupCreateManyOrgInput | GroupCreateManyOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| owner | UserCreateNestedOneWithoutFilesInput | No |
| groups | GroupCreateNestedManyWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| create | FileCreateWithoutOrgInput | FileUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FileCreateManyOrgInput | FileCreateManyOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| owner | UserCreateNestedOneWithoutTasksAuthorInput | No |
| groups | GroupCreateNestedManyWithoutTasksInput | No |
| mainTask | TaskCreateNestedOneWithoutSubTasksInput | No |
| SubTasks | TaskCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkCreateNestedManyWithoutTaskInput | No |
| todo | TodoCreateNestedOneWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTasksInput | No |
| SubTasks | TaskUncheckedCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkUncheckedCreateNestedManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutOrgInput | TaskUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TaskCreateManyOrgInput | TaskCreateManyOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| owner | UserCreateNestedOneWithoutTodosAuthorInput | No |
| groups | GroupCreateNestedManyWithoutTodosInput | No |
| mainTodo | TodoCreateNestedOneWithoutSubTodosInput | No |
| SubTodos | TodoCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTodosInput | No |
| SubTodos | TodoUncheckedCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkUncheckedCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| create | TodoCreateWithoutOrgInput | TodoUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TodoCreateManyOrgInput | TodoCreateManyOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailWhereUniqueInput | No |
| update | OrgEmailUpdateWithoutOrgInput | OrgEmailUncheckedUpdateWithoutOrgInput | No |
| create | OrgEmailCreateWithoutOrgInput | OrgEmailUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailWhereUniqueInput | No |
| data | OrgEmailUpdateWithoutOrgInput | OrgEmailUncheckedUpdateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailScalarWhereInput | No |
| data | OrgEmailUpdateManyMutationInput | OrgEmailUncheckedUpdateManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgEmailScalarWhereInput | OrgEmailScalarWhereInput[] | No |
| OR | OrgEmailScalarWhereInput[] | No |
| NOT | OrgEmailScalarWhereInput | OrgEmailScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| StringFilter | String | No | |
| description | StringNullableFilter | String | Null | Yes |
| orgId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgDomainWhereUniqueInput | No |
| update | OrgDomainUpdateWithoutOrgInput | OrgDomainUncheckedUpdateWithoutOrgInput | No |
| create | OrgDomainCreateWithoutOrgInput | OrgDomainUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgDomainWhereUniqueInput | No |
| data | OrgDomainUpdateWithoutOrgInput | OrgDomainUncheckedUpdateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgDomainScalarWhereInput | No |
| data | OrgDomainUpdateManyMutationInput | OrgDomainUncheckedUpdateManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgDomainScalarWhereInput | OrgDomainScalarWhereInput[] | No |
| OR | OrgDomainScalarWhereInput[] | No |
| NOT | OrgDomainScalarWhereInput | OrgDomainScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| domainName | StringFilter | String | No |
| extension | StringFilter | String | No |
| orgId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutOrgEntityInput | OrganizationUncheckedUpdateWithoutOrgEntityInput | No |
| create | OrganizationCreateWithoutOrgEntityInput | OrganizationUncheckedCreateWithoutOrgEntityInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutOrgEntityInput | OrganizationUncheckedUpdateWithoutOrgEntityInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateWithoutMainOrgInput | OrganizationUncheckedUpdateWithoutMainOrgInput | No |
| create | OrganizationCreateWithoutMainOrgInput | OrganizationUncheckedCreateWithoutMainOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| data | OrganizationUpdateWithoutMainOrgInput | OrganizationUncheckedUpdateWithoutMainOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationScalarWhereInput | No |
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutMainOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrganizationScalarWhereInput | OrganizationScalarWhereInput[] | No |
| OR | OrganizationScalarWhereInput[] | No |
| NOT | OrganizationScalarWhereInput | OrganizationScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| address | JsonNullableFilter | No |
| emailITAdmin | StringFilter | String | No |
| webSite | StringNullableFilter | String | Null | Yes |
| mainOrgId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutOrgsInput | UserUncheckedUpdateWithoutOrgsInput | No |
| create | UserCreateWithoutOrgsInput | UserUncheckedCreateWithoutOrgsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutOrgsInput | UserUncheckedUpdateWithoutOrgsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutOrgsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereInput | UserScalarWhereInput[] | No |
| OR | UserScalarWhereInput[] | No |
| NOT | UserScalarWhereInput | UserScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| StringFilter | String | No | |
| lastName | StringNullableFilter | String | Null | Yes |
| firstName | StringNullableFilter | String | Null | Yes |
| title | EnumTitleNullableFilter | Title | Null | Yes |
| nickName | StringNullableFilter | String | Null | Yes |
| Gender | EnumGenderNullableFilter | Gender | Null | Yes |
| social | JsonNullableFilter | No |
| Language | EnumLanguageNullableFilter | Language | Null | Yes |
| dob | DateTimeNullableFilter | DateTime | Null | Yes |
| address | JsonNullableFilter | No |
| isValidated | DateTimeNullableFilter | DateTime | Null | Yes |
| isSuspended | DateTimeNullableFilter | DateTime | Null | Yes |
| managerId | StringNullableFilter | String | Null | Yes |
| Roles | EnumRoleNullableListFilter | No |
| Permissions | EnumPermissionClaimNullableListFilter | No |
| isTfaEnable | BoolFilter | Boolean | No |
| tfaSecret | StringNullableFilter | String | Null | Yes |
| passWordFaker | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| update | PostUpdateWithoutOrgInput | PostUncheckedUpdateWithoutOrgInput | No |
| create | PostCreateWithoutOrgInput | PostUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| data | PostUpdateWithoutOrgInput | PostUncheckedUpdateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostScalarWhereInput | No |
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostScalarWhereInput | PostScalarWhereInput[] | No |
| OR | PostScalarWhereInput[] | No |
| NOT | PostScalarWhereInput | PostScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| orderPost | IntNullableFilter | Int | Null | Yes |
| title | StringFilter | String | No |
| content | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| update | GroupUpdateWithoutOrgInput | GroupUncheckedUpdateWithoutOrgInput | No |
| create | GroupCreateWithoutOrgInput | GroupUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| data | GroupUpdateWithoutOrgInput | GroupUncheckedUpdateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupScalarWhereInput | No |
| data | GroupUpdateManyMutationInput | GroupUncheckedUpdateManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| OR | GroupScalarWhereInput[] | No |
| NOT | GroupScalarWhereInput | GroupScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderGroup | IntFilter | Int | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| isActiv | DateTimeNullableFilter | DateTime | Null | Yes |
| orgId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| update | FileUpdateWithoutOrgInput | FileUncheckedUpdateWithoutOrgInput | No |
| create | FileCreateWithoutOrgInput | FileUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| data | FileUpdateWithoutOrgInput | FileUncheckedUpdateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileScalarWhereInput | No |
| data | FileUpdateManyMutationInput | FileUncheckedUpdateManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FileScalarWhereInput | FileScalarWhereInput[] | No |
| OR | FileScalarWhereInput[] | No |
| NOT | FileScalarWhereInput | FileScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| name | StringFilter | String | No |
| storageName | StringFilter | String | No |
| type | StringNullableFilter | String | Null | Yes |
| data | StringNullableFilter | String | Null | Yes |
| size | IntNullableFilter | Int | Null | Yes |
| isArchived | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| update | TaskUpdateWithoutOrgInput | TaskUncheckedUpdateWithoutOrgInput | No |
| create | TaskCreateWithoutOrgInput | TaskUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| data | TaskUpdateWithoutOrgInput | TaskUncheckedUpdateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskScalarWhereInput | No |
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| OR | TaskScalarWhereInput[] | No |
| NOT | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| orderTask | IntFilter | Int | No |
| title | StringFilter | String | No |
| content | StringNullableFilter | String | Null | Yes |
| taskState | EnumTaskStateFilter | TaskState | No |
| mainTaskId | StringNullableFilter | String | Null | Yes |
| todoId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| update | TodoUpdateWithoutOrgInput | TodoUncheckedUpdateWithoutOrgInput | No |
| create | TodoCreateWithoutOrgInput | TodoUncheckedCreateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| data | TodoUpdateWithoutOrgInput | TodoUncheckedUpdateWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoScalarWhereInput | No |
| data | TodoUpdateManyMutationInput | TodoUncheckedUpdateManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| OR | TodoScalarWhereInput[] | No |
| NOT | TodoScalarWhereInput | TodoScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| isPublic | BoolFilter | Boolean | No |
| ownerId | StringFilter | String | No |
| orgId | StringFilter | String | No |
| orderTodo | IntFilter | Int | No |
| title | StringFilter | String | No |
| content | StringNullableFilter | String | Null | Yes |
| todoState | EnumTodoStateFilter | TodoState | No |
| mainTodoId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutOrgEmailsInput | OrganizationUncheckedCreateWithoutOrgEmailsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| useTo | String | No |
| isActiv | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| useTo | String | No |
| isActiv | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailUseToWhereUniqueInput | No |
| create | OrgEmailUseToCreateWithoutEmailOrgInput | OrgEmailUseToUncheckedCreateWithoutEmailOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrgEmailUseToCreateManyEmailOrgInput | OrgEmailUseToCreateManyEmailOrgInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutOrgEmailsInput | OrganizationUncheckedUpdateWithoutOrgEmailsInput | No |
| create | OrganizationCreateWithoutOrgEmailsInput | OrganizationUncheckedCreateWithoutOrgEmailsInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutOrgEmailsInput | OrganizationUncheckedUpdateWithoutOrgEmailsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailUseToWhereUniqueInput | No |
| update | OrgEmailUseToUpdateWithoutEmailOrgInput | OrgEmailUseToUncheckedUpdateWithoutEmailOrgInput | No |
| create | OrgEmailUseToCreateWithoutEmailOrgInput | OrgEmailUseToUncheckedCreateWithoutEmailOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailUseToWhereUniqueInput | No |
| data | OrgEmailUseToUpdateWithoutEmailOrgInput | OrgEmailUseToUncheckedUpdateWithoutEmailOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailUseToScalarWhereInput | No |
| data | OrgEmailUseToUpdateManyMutationInput | OrgEmailUseToUncheckedUpdateManyWithoutEmailOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrgEmailUseToScalarWhereInput | OrgEmailUseToScalarWhereInput[] | No |
| OR | OrgEmailUseToScalarWhereInput[] | No |
| NOT | OrgEmailUseToScalarWhereInput | OrgEmailUseToScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| useTo | StringFilter | String | No |
| isActiv | BoolFilter | Boolean | No |
| emailOrgId | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutOrgDomainsInput | OrganizationUncheckedCreateWithoutOrgDomainsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutOrgDomainsInput | OrganizationUncheckedUpdateWithoutOrgDomainsInput | No |
| create | OrganizationCreateWithoutOrgDomainsInput | OrganizationUncheckedCreateWithoutOrgDomainsInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutOrgDomainsInput | OrganizationUncheckedUpdateWithoutOrgDomainsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutMembersInput | OrganizationUncheckedCreateWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTeamInput | UserUncheckedCreateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutManagerInput | UserUncheckedCreateWithoutManagerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyManagerInput | UserCreateManyManagerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderProfile | Int | No |
| bio | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderProfile | Int | No |
| bio | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProfileWhereUniqueInput | No |
| create | ProfileCreateWithoutUsersInput | ProfileUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Tasks | TaskCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoCreateNestedManyWithoutGroupsInput | No |
| Posts | PostCreateNestedManyWithoutGroupsInput | No |
| Files | FileCreateNestedManyWithoutGroupsInput | No |
| org | OrganizationCreateNestedOneWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| orgId | String | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutGroupsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutGroupsInput | No |
| Files | FileUncheckedCreateNestedManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| create | GroupCreateWithoutUsersInput | GroupUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| org | OrganizationCreateNestedOneWithoutPostsInput | No |
| groups | GroupCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryCreateNestedManyWithoutPostsInput | No |
| Comments | CommentCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orgId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryUncheckedCreateNestedManyWithoutPostsInput | No |
| Comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutOwnerInput | PostUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostCreateManyOwnerInput | PostCreateManyOwnerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| post | PostCreateNestedOneWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyAuthorInput | CommentCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| caption | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| caption | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| create | StoryCreateWithoutUserInput | StoryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | StoryCreateManyUserInput | StoryCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| todo | TodoCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| todoId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | No |
| create | UserTodoLinkCreateWithoutUserInput | UserTodoLinkUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserTodoLinkCreateManyUserInput | UserTodoLinkCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| org | OrganizationCreateNestedOneWithoutTodosInput | No |
| groups | GroupCreateNestedManyWithoutTodosInput | No |
| mainTodo | TodoCreateNestedOneWithoutSubTodosInput | No |
| SubTodos | TodoCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTodosInput | No |
| SubTodos | TodoUncheckedCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkUncheckedCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| create | TodoCreateWithoutOwnerInput | TodoUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TodoCreateManyOwnerInput | TodoCreateManyOwnerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| task | TaskCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| taskId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | No |
| create | UserTaskLinkCreateWithoutUserInput | UserTaskLinkUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserTaskLinkCreateManyUserInput | UserTaskLinkCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| org | OrganizationCreateNestedOneWithoutTasksInput | No |
| groups | GroupCreateNestedManyWithoutTasksInput | No |
| mainTask | TaskCreateNestedOneWithoutSubTasksInput | No |
| SubTasks | TaskCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkCreateNestedManyWithoutTaskInput | No |
| todo | TodoCreateNestedOneWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTasksInput | No |
| SubTasks | TaskUncheckedCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkUncheckedCreateNestedManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutOwnerInput | TaskUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TaskCreateManyOwnerInput | TaskCreateManyOwnerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| org | OrganizationCreateNestedOneWithoutFilesInput | No |
| groups | GroupCreateNestedManyWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orgId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| create | FileCreateWithoutOwnerInput | FileUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FileCreateManyOwnerInput | FileCreateManyOwnerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| doneAt | DateTime | No |
| modelName | String | No |
| recordId | String | No |
| operation | String | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| doneAt | DateTime | No |
| modelName | String | No |
| recordId | String | No |
| operation | String | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChangesTrackingWhereUniqueInput | No |
| create | ChangesTrackingCreateWithoutModifiedByInput | ChangesTrackingUncheckedCreateWithoutModifiedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChangesTrackingCreateManyModifiedByInput | ChangesTrackingCreateManyModifiedByInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| tokenId | String | Null | Yes |
| type | TokenType | No |
| emailToken | String | Null | Yes |
| valid | Boolean | No |
| expiration | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| tokenId | String | Null | Yes |
| type | TokenType | No |
| emailToken | String | Null | Yes |
| valid | Boolean | No |
| expiration | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | TokenWhereUniqueInput | No |
| create | TokenCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TokenCreateManyUserInput | TokenCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| key | String | No |
| uuid | String | No |
| Scopes | ScopeCreateNestedManyWithoutApiKeyInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| key | String | No |
| uuid | String | No |
| Scopes | ScopeUncheckedCreateNestedManyWithoutApiKeyInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApiKeyWhereUniqueInput | No |
| create | ApiKeyCreateWithoutUserInput | ApiKeyUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ApiKeyCreateManyUserInput | ApiKeyCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| pwdHash | String | Null | Yes |
| salt | String | Null | Yes |
| isAdmin | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| pwdHash | String | Null | Yes |
| salt | String | Null | Yes |
| isAdmin | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | UserSecretWhereUniqueInput | No |
| create | UserSecretCreateWithoutUserInput | UserSecretUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| follower | UserCreateNestedOneWithoutFollowingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| follower_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserFollowerWhereUniqueInput | No |
| create | UserFollowerCreateWithoutUserInput | UserFollowerUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserFollowerCreateManyUserInput | UserFollowerCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutFollowersInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserFollowerWhereUniqueInput | No |
| create | UserFollowerCreateWithoutFollowerInput | UserFollowerUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserFollowerCreateManyFollowerInput | UserFollowerCreateManyFollowerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| post | PostCreateNestedOneWithoutLikedBysInput | No |
| Name | Type | Nullable |
|---|---|---|
| post_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostLikeWhereUniqueInput | No |
| create | PostLikeCreateWithoutUserInput | PostLikeUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostLikeCreateManyUserInput | PostLikeCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateWithoutMembersInput | OrganizationUncheckedUpdateWithoutMembersInput | No |
| create | OrganizationCreateWithoutMembersInput | OrganizationUncheckedCreateWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| data | OrganizationUpdateWithoutMembersInput | OrganizationUncheckedUpdateWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationScalarWhereInput | No |
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTeamInput | UserUncheckedUpdateWithoutTeamInput | No |
| create | UserCreateWithoutTeamInput | UserUncheckedCreateWithoutTeamInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTeamInput | UserUncheckedUpdateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutManagerInput | UserUncheckedUpdateWithoutManagerInput | No |
| create | UserCreateWithoutManagerInput | UserUncheckedCreateWithoutManagerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutManagerInput | UserUncheckedUpdateWithoutManagerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutManagerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProfileWhereUniqueInput | No |
| update | ProfileUpdateWithoutUsersInput | ProfileUncheckedUpdateWithoutUsersInput | No |
| create | ProfileCreateWithoutUsersInput | ProfileUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProfileWhereUniqueInput | No |
| data | ProfileUpdateWithoutUsersInput | ProfileUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProfileScalarWhereInput | No |
| data | ProfileUpdateManyMutationInput | ProfileUncheckedUpdateManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ProfileScalarWhereInput | ProfileScalarWhereInput[] | No |
| OR | ProfileScalarWhereInput[] | No |
| NOT | ProfileScalarWhereInput | ProfileScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderProfile | IntFilter | Int | No |
| bio | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| update | GroupUpdateWithoutUsersInput | GroupUncheckedUpdateWithoutUsersInput | No |
| create | GroupCreateWithoutUsersInput | GroupUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| data | GroupUpdateWithoutUsersInput | GroupUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupScalarWhereInput | No |
| data | GroupUpdateManyMutationInput | GroupUncheckedUpdateManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| update | PostUpdateWithoutOwnerInput | PostUncheckedUpdateWithoutOwnerInput | No |
| create | PostCreateWithoutOwnerInput | PostUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| data | PostUpdateWithoutOwnerInput | PostUncheckedUpdateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostScalarWhereInput | No |
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput | No |
| create | CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| OR | CommentScalarWhereInput[] | No |
| NOT | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderComment | IntFilter | Int | No |
| content | StringNullableFilter | String | Null | Yes |
| postId | StringFilter | String | No |
| authorId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| update | StoryUpdateWithoutUserInput | StoryUncheckedUpdateWithoutUserInput | No |
| create | StoryCreateWithoutUserInput | StoryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| data | StoryUpdateWithoutUserInput | StoryUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryScalarWhereInput | No |
| data | StoryUpdateManyMutationInput | StoryUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| OR | StoryScalarWhereInput[] | No |
| NOT | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| caption | StringFilter | String | No |
| user_id | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | No |
| update | UserTodoLinkUpdateWithoutUserInput | UserTodoLinkUncheckedUpdateWithoutUserInput | No |
| create | UserTodoLinkCreateWithoutUserInput | UserTodoLinkUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | No |
| data | UserTodoLinkUpdateWithoutUserInput | UserTodoLinkUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTodoLinkScalarWhereInput | No |
| data | UserTodoLinkUpdateManyMutationInput | UserTodoLinkUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserTodoLinkScalarWhereInput | UserTodoLinkScalarWhereInput[] | No |
| OR | UserTodoLinkScalarWhereInput[] | No |
| NOT | UserTodoLinkScalarWhereInput | UserTodoLinkScalarWhereInput[] | No |
| userId | StringFilter | String | No |
| todoId | StringFilter | String | No |
| isAuthor | BoolFilter | Boolean | No |
| isAssigned | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| comment | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| update | TodoUpdateWithoutOwnerInput | TodoUncheckedUpdateWithoutOwnerInput | No |
| create | TodoCreateWithoutOwnerInput | TodoUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| data | TodoUpdateWithoutOwnerInput | TodoUncheckedUpdateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoScalarWhereInput | No |
| data | TodoUpdateManyMutationInput | TodoUncheckedUpdateManyWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | No |
| update | UserTaskLinkUpdateWithoutUserInput | UserTaskLinkUncheckedUpdateWithoutUserInput | No |
| create | UserTaskLinkCreateWithoutUserInput | UserTaskLinkUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | No |
| data | UserTaskLinkUpdateWithoutUserInput | UserTaskLinkUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTaskLinkScalarWhereInput | No |
| data | UserTaskLinkUpdateManyMutationInput | UserTaskLinkUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserTaskLinkScalarWhereInput | UserTaskLinkScalarWhereInput[] | No |
| OR | UserTaskLinkScalarWhereInput[] | No |
| NOT | UserTaskLinkScalarWhereInput | UserTaskLinkScalarWhereInput[] | No |
| userId | StringFilter | String | No |
| taskId | StringFilter | String | No |
| isAuthor | BoolFilter | Boolean | No |
| isAssigned | BoolFilter | Boolean | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| comment | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| update | TaskUpdateWithoutOwnerInput | TaskUncheckedUpdateWithoutOwnerInput | No |
| create | TaskCreateWithoutOwnerInput | TaskUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| data | TaskUpdateWithoutOwnerInput | TaskUncheckedUpdateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskScalarWhereInput | No |
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| update | FileUpdateWithoutOwnerInput | FileUncheckedUpdateWithoutOwnerInput | No |
| create | FileCreateWithoutOwnerInput | FileUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| data | FileUpdateWithoutOwnerInput | FileUncheckedUpdateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileScalarWhereInput | No |
| data | FileUpdateManyMutationInput | FileUncheckedUpdateManyWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChangesTrackingWhereUniqueInput | No |
| update | ChangesTrackingUpdateWithoutModifiedByInput | ChangesTrackingUncheckedUpdateWithoutModifiedByInput | No |
| create | ChangesTrackingCreateWithoutModifiedByInput | ChangesTrackingUncheckedCreateWithoutModifiedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChangesTrackingWhereUniqueInput | No |
| data | ChangesTrackingUpdateWithoutModifiedByInput | ChangesTrackingUncheckedUpdateWithoutModifiedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChangesTrackingScalarWhereInput | No |
| data | ChangesTrackingUpdateManyMutationInput | ChangesTrackingUncheckedUpdateManyWithoutModifiedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChangesTrackingScalarWhereInput | ChangesTrackingScalarWhereInput[] | No |
| OR | ChangesTrackingScalarWhereInput[] | No |
| NOT | ChangesTrackingScalarWhereInput | ChangesTrackingScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| doneAt | DateTimeFilter | DateTime | No |
| modifiedById | StringFilter | String | No |
| modelName | StringFilter | String | No |
| recordId | StringFilter | String | No |
| operation | StringFilter | String | No |
| newData | JsonFilter | No |
| oldData | JsonFilter | No |
| Name | Type | Nullable |
|---|---|---|
| where | TokenWhereUniqueInput | No |
| update | TokenUpdateWithoutUserInput | TokenUncheckedUpdateWithoutUserInput | No |
| create | TokenCreateWithoutUserInput | TokenUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TokenWhereUniqueInput | No |
| data | TokenUpdateWithoutUserInput | TokenUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TokenScalarWhereInput | No |
| data | TokenUpdateManyMutationInput | TokenUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TokenScalarWhereInput | TokenScalarWhereInput[] | No |
| OR | TokenScalarWhereInput[] | No |
| NOT | TokenScalarWhereInput | TokenScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| tokenId | StringNullableFilter | String | Null | Yes |
| type | EnumTokenTypeFilter | TokenType | No |
| emailToken | StringNullableFilter | String | Null | Yes |
| valid | BoolFilter | Boolean | No |
| expiration | DateTimeFilter | DateTime | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApiKeyWhereUniqueInput | No |
| update | ApiKeyUpdateWithoutUserInput | ApiKeyUncheckedUpdateWithoutUserInput | No |
| create | ApiKeyCreateWithoutUserInput | ApiKeyUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApiKeyWhereUniqueInput | No |
| data | ApiKeyUpdateWithoutUserInput | ApiKeyUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApiKeyScalarWhereInput | No |
| data | ApiKeyUpdateManyMutationInput | ApiKeyUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ApiKeyScalarWhereInput | ApiKeyScalarWhereInput[] | No |
| OR | ApiKeyScalarWhereInput[] | No |
| NOT | ApiKeyScalarWhereInput | ApiKeyScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| key | StringFilter | String | No |
| uuid | StringFilter | String | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserSecretUpdateWithoutUserInput | UserSecretUncheckedUpdateWithoutUserInput | No |
| create | UserSecretCreateWithoutUserInput | UserSecretUncheckedCreateWithoutUserInput | No |
| where | UserSecretWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSecretWhereInput | No |
| data | UserSecretUpdateWithoutUserInput | UserSecretUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| pwdHash | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| salt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isAdmin | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| pwdHash | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| salt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isAdmin | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | UserFollowerWhereUniqueInput | No |
| update | UserFollowerUpdateWithoutUserInput | UserFollowerUncheckedUpdateWithoutUserInput | No |
| create | UserFollowerCreateWithoutUserInput | UserFollowerUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserFollowerWhereUniqueInput | No |
| data | UserFollowerUpdateWithoutUserInput | UserFollowerUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserFollowerScalarWhereInput | No |
| data | UserFollowerUpdateManyMutationInput | UserFollowerUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserFollowerScalarWhereInput | UserFollowerScalarWhereInput[] | No |
| OR | UserFollowerScalarWhereInput[] | No |
| NOT | UserFollowerScalarWhereInput | UserFollowerScalarWhereInput[] | No |
| user_id | StringFilter | String | No |
| follower_id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserFollowerWhereUniqueInput | No |
| update | UserFollowerUpdateWithoutFollowerInput | UserFollowerUncheckedUpdateWithoutFollowerInput | No |
| create | UserFollowerCreateWithoutFollowerInput | UserFollowerUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserFollowerWhereUniqueInput | No |
| data | UserFollowerUpdateWithoutFollowerInput | UserFollowerUncheckedUpdateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserFollowerScalarWhereInput | No |
| data | UserFollowerUpdateManyMutationInput | UserFollowerUncheckedUpdateManyWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostLikeWhereUniqueInput | No |
| update | PostLikeUpdateWithoutUserInput | PostLikeUncheckedUpdateWithoutUserInput | No |
| create | PostLikeCreateWithoutUserInput | PostLikeUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostLikeWhereUniqueInput | No |
| data | PostLikeUpdateWithoutUserInput | PostLikeUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostLikeScalarWhereInput | No |
| data | PostLikeUpdateManyMutationInput | PostLikeUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostLikeScalarWhereInput | PostLikeScalarWhereInput[] | No |
| OR | PostLikeScalarWhereInput[] | No |
| NOT | PostLikeScalarWhereInput | PostLikeScalarWhereInput[] | No |
| user_id | StringFilter | String | No |
| post_id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutUserSecretInput | UserUncheckedCreateWithoutUserSecretInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutUserSecretInput | UserUncheckedUpdateWithoutUserSecretInput | No |
| create | UserCreateWithoutUserSecretInput | UserUncheckedCreateWithoutUserSecretInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutUserSecretInput | UserUncheckedUpdateWithoutUserSecretInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutProfilesInput | UserUncheckedCreateWithoutProfilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutProfilesInput | UserUncheckedUpdateWithoutProfilesInput | No |
| create | UserCreateWithoutProfilesInput | UserUncheckedCreateWithoutProfilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutProfilesInput | UserUncheckedUpdateWithoutProfilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutProfilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutGroupsInput | UserUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| owner | UserCreateNestedOneWithoutTasksAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTasksInput | No |
| mainTask | TaskCreateNestedOneWithoutSubTasksInput | No |
| SubTasks | TaskCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkCreateNestedManyWithoutTaskInput | No |
| todo | TodoCreateNestedOneWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| SubTasks | TaskUncheckedCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkUncheckedCreateNestedManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutGroupsInput | TaskUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| owner | UserCreateNestedOneWithoutTodosAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTodosInput | No |
| mainTodo | TodoCreateNestedOneWithoutSubTodosInput | No |
| SubTodos | TodoCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| SubTodos | TodoUncheckedCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkUncheckedCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| create | TodoCreateWithoutGroupsInput | TodoUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| owner | UserCreateNestedOneWithoutPostsInput | No |
| org | OrganizationCreateNestedOneWithoutPostsInput | No |
| Categories | CategoryCreateNestedManyWithoutPostsInput | No |
| Comments | CommentCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| Categories | CategoryUncheckedCreateNestedManyWithoutPostsInput | No |
| Comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutGroupsInput | PostUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| owner | UserCreateNestedOneWithoutFilesInput | No |
| org | OrganizationCreateNestedOneWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| create | FileCreateWithoutGroupsInput | FileUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutGroupsInput | OrganizationUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutGroupsInput | UserUncheckedUpdateWithoutGroupsInput | No |
| create | UserCreateWithoutGroupsInput | UserUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutGroupsInput | UserUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| update | TaskUpdateWithoutGroupsInput | TaskUncheckedUpdateWithoutGroupsInput | No |
| create | TaskCreateWithoutGroupsInput | TaskUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| data | TaskUpdateWithoutGroupsInput | TaskUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskScalarWhereInput | No |
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| update | TodoUpdateWithoutGroupsInput | TodoUncheckedUpdateWithoutGroupsInput | No |
| create | TodoCreateWithoutGroupsInput | TodoUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| data | TodoUpdateWithoutGroupsInput | TodoUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoScalarWhereInput | No |
| data | TodoUpdateManyMutationInput | TodoUncheckedUpdateManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| update | PostUpdateWithoutGroupsInput | PostUncheckedUpdateWithoutGroupsInput | No |
| create | PostCreateWithoutGroupsInput | PostUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| data | PostUpdateWithoutGroupsInput | PostUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostScalarWhereInput | No |
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| update | FileUpdateWithoutGroupsInput | FileUncheckedUpdateWithoutGroupsInput | No |
| create | FileCreateWithoutGroupsInput | FileUncheckedCreateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileWhereUniqueInput | No |
| data | FileUpdateWithoutGroupsInput | FileUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FileScalarWhereInput | No |
| data | FileUpdateManyMutationInput | FileUncheckedUpdateManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutGroupsInput | OrganizationUncheckedUpdateWithoutGroupsInput | No |
| create | OrganizationCreateWithoutGroupsInput | OrganizationUncheckedCreateWithoutGroupsInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutGroupsInput | OrganizationUncheckedUpdateWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTodosAuthorInput | UserUncheckedCreateWithoutTodosAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutTodosInput | OrganizationUncheckedCreateWithoutTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Users | UserCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskCreateNestedManyWithoutGroupsInput | No |
| Posts | PostCreateNestedManyWithoutGroupsInput | No |
| Files | FileCreateNestedManyWithoutGroupsInput | No |
| org | OrganizationCreateNestedOneWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| orgId | String | No |
| Users | UserUncheckedCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutGroupsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutGroupsInput | No |
| Files | FileUncheckedCreateNestedManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| create | GroupCreateWithoutTodosInput | GroupUncheckedCreateWithoutTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| owner | UserCreateNestedOneWithoutTodosAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTodosInput | No |
| groups | GroupCreateNestedManyWithoutTodosInput | No |
| mainTodo | TodoCreateNestedOneWithoutSubTodosInput | No |
| Users | UserTodoLinkCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTodosInput | No |
| Users | UserTodoLinkUncheckedCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| create | TodoCreateWithoutSubTodosInput | TodoUncheckedCreateWithoutSubTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| owner | UserCreateNestedOneWithoutTodosAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTodosInput | No |
| groups | GroupCreateNestedManyWithoutTodosInput | No |
| SubTodos | TodoCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| groups | GroupUncheckedCreateNestedManyWithoutTodosInput | No |
| SubTodos | TodoUncheckedCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkUncheckedCreateNestedManyWithoutTodoInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| create | TodoCreateWithoutMainTodoInput | TodoUncheckedCreateWithoutMainTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TodoCreateManyMainTodoInput | TodoCreateManyMainTodoInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| user | UserCreateNestedOneWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | No |
| create | UserTodoLinkCreateWithoutTodoInput | UserTodoLinkUncheckedCreateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserTodoLinkCreateManyTodoInput | UserTodoLinkCreateManyTodoInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| owner | UserCreateNestedOneWithoutTasksAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTasksInput | No |
| groups | GroupCreateNestedManyWithoutTasksInput | No |
| mainTask | TaskCreateNestedOneWithoutSubTasksInput | No |
| SubTasks | TaskCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkCreateNestedManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTasksInput | No |
| SubTasks | TaskUncheckedCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkUncheckedCreateNestedManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutTodoInput | TaskUncheckedCreateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TaskCreateManyTodoInput | TaskCreateManyTodoInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTodosAuthorInput | UserUncheckedUpdateWithoutTodosAuthorInput | No |
| create | UserCreateWithoutTodosAuthorInput | UserUncheckedCreateWithoutTodosAuthorInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTodosAuthorInput | UserUncheckedUpdateWithoutTodosAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutTodosInput | OrganizationUncheckedUpdateWithoutTodosInput | No |
| create | OrganizationCreateWithoutTodosInput | OrganizationUncheckedCreateWithoutTodosInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutTodosInput | OrganizationUncheckedUpdateWithoutTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| update | GroupUpdateWithoutTodosInput | GroupUncheckedUpdateWithoutTodosInput | No |
| create | GroupCreateWithoutTodosInput | GroupUncheckedCreateWithoutTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| data | GroupUpdateWithoutTodosInput | GroupUncheckedUpdateWithoutTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupScalarWhereInput | No |
| data | GroupUpdateManyMutationInput | GroupUncheckedUpdateManyWithoutTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TodoUpdateWithoutSubTodosInput | TodoUncheckedUpdateWithoutSubTodosInput | No |
| create | TodoCreateWithoutSubTodosInput | TodoUncheckedCreateWithoutSubTodosInput | No |
| where | TodoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereInput | No |
| data | TodoUpdateWithoutSubTodosInput | TodoUncheckedUpdateWithoutSubTodosInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| update | TodoUpdateWithoutMainTodoInput | TodoUncheckedUpdateWithoutMainTodoInput | No |
| create | TodoCreateWithoutMainTodoInput | TodoUncheckedCreateWithoutMainTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| data | TodoUpdateWithoutMainTodoInput | TodoUncheckedUpdateWithoutMainTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoScalarWhereInput | No |
| data | TodoUpdateManyMutationInput | TodoUncheckedUpdateManyWithoutMainTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | No |
| update | UserTodoLinkUpdateWithoutTodoInput | UserTodoLinkUncheckedUpdateWithoutTodoInput | No |
| create | UserTodoLinkCreateWithoutTodoInput | UserTodoLinkUncheckedCreateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTodoLinkWhereUniqueInput | No |
| data | UserTodoLinkUpdateWithoutTodoInput | UserTodoLinkUncheckedUpdateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTodoLinkScalarWhereInput | No |
| data | UserTodoLinkUpdateManyMutationInput | UserTodoLinkUncheckedUpdateManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| update | TaskUpdateWithoutTodoInput | TaskUncheckedUpdateWithoutTodoInput | No |
| create | TaskCreateWithoutTodoInput | TaskUncheckedCreateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| data | TaskUpdateWithoutTodoInput | TaskUncheckedUpdateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskScalarWhereInput | No |
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTodoInput | UserUncheckedCreateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| owner | UserCreateNestedOneWithoutTodosAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTodosInput | No |
| groups | GroupCreateNestedManyWithoutTodosInput | No |
| mainTodo | TodoCreateNestedOneWithoutSubTodosInput | No |
| SubTodos | TodoCreateNestedManyWithoutMainTodoInput | No |
| Tasks | TaskCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTodosInput | No |
| SubTodos | TodoUncheckedCreateNestedManyWithoutMainTodoInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| create | TodoCreateWithoutUsersInput | TodoUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTodoInput | UserUncheckedUpdateWithoutTodoInput | No |
| create | UserCreateWithoutTodoInput | UserUncheckedCreateWithoutTodoInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTodoInput | UserUncheckedUpdateWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TodoUpdateWithoutUsersInput | TodoUncheckedUpdateWithoutUsersInput | No |
| create | TodoCreateWithoutUsersInput | TodoUncheckedCreateWithoutUsersInput | No |
| where | TodoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereInput | No |
| data | TodoUpdateWithoutUsersInput | TodoUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTasksAuthorInput | UserUncheckedCreateWithoutTasksAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutTasksInput | OrganizationUncheckedCreateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Users | UserCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoCreateNestedManyWithoutGroupsInput | No |
| Posts | PostCreateNestedManyWithoutGroupsInput | No |
| Files | FileCreateNestedManyWithoutGroupsInput | No |
| org | OrganizationCreateNestedOneWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| orgId | String | No |
| Users | UserUncheckedCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutGroupsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutGroupsInput | No |
| Files | FileUncheckedCreateNestedManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| create | GroupCreateWithoutTasksInput | GroupUncheckedCreateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| owner | UserCreateNestedOneWithoutTasksAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTasksInput | No |
| groups | GroupCreateNestedManyWithoutTasksInput | No |
| mainTask | TaskCreateNestedOneWithoutSubTasksInput | No |
| Users | UserTaskLinkCreateNestedManyWithoutTaskInput | No |
| todo | TodoCreateNestedOneWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTasksInput | No |
| Users | UserTaskLinkUncheckedCreateNestedManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutSubTasksInput | TaskUncheckedCreateWithoutSubTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| owner | UserCreateNestedOneWithoutTasksAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTasksInput | No |
| groups | GroupCreateNestedManyWithoutTasksInput | No |
| SubTasks | TaskCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkCreateNestedManyWithoutTaskInput | No |
| todo | TodoCreateNestedOneWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| todoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTasksInput | No |
| SubTasks | TaskUncheckedCreateNestedManyWithoutMainTaskInput | No |
| Users | UserTaskLinkUncheckedCreateNestedManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutMainTaskInput | TaskUncheckedCreateWithoutMainTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TaskCreateManyMainTaskInput | TaskCreateManyMainTaskInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| user | UserCreateNestedOneWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | No |
| create | UserTaskLinkCreateWithoutTaskInput | UserTaskLinkUncheckedCreateWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserTaskLinkCreateManyTaskInput | UserTaskLinkCreateManyTaskInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| owner | UserCreateNestedOneWithoutTodosAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTodosInput | No |
| groups | GroupCreateNestedManyWithoutTodosInput | No |
| mainTodo | TodoCreateNestedOneWithoutSubTodosInput | No |
| SubTodos | TodoCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTodosInput | No |
| SubTodos | TodoUncheckedCreateNestedManyWithoutMainTodoInput | No |
| Users | UserTodoLinkUncheckedCreateNestedManyWithoutTodoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereUniqueInput | No |
| create | TodoCreateWithoutTasksInput | TodoUncheckedCreateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTasksAuthorInput | UserUncheckedUpdateWithoutTasksAuthorInput | No |
| create | UserCreateWithoutTasksAuthorInput | UserUncheckedCreateWithoutTasksAuthorInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTasksAuthorInput | UserUncheckedUpdateWithoutTasksAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutTasksInput | OrganizationUncheckedUpdateWithoutTasksInput | No |
| create | OrganizationCreateWithoutTasksInput | OrganizationUncheckedCreateWithoutTasksInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutTasksInput | OrganizationUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| update | GroupUpdateWithoutTasksInput | GroupUncheckedUpdateWithoutTasksInput | No |
| create | GroupCreateWithoutTasksInput | GroupUncheckedCreateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| data | GroupUpdateWithoutTasksInput | GroupUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupScalarWhereInput | No |
| data | GroupUpdateManyMutationInput | GroupUncheckedUpdateManyWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TaskUpdateWithoutSubTasksInput | TaskUncheckedUpdateWithoutSubTasksInput | No |
| create | TaskCreateWithoutSubTasksInput | TaskUncheckedCreateWithoutSubTasksInput | No |
| where | TaskWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereInput | No |
| data | TaskUpdateWithoutSubTasksInput | TaskUncheckedUpdateWithoutSubTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| update | TaskUpdateWithoutMainTaskInput | TaskUncheckedUpdateWithoutMainTaskInput | No |
| create | TaskCreateWithoutMainTaskInput | TaskUncheckedCreateWithoutMainTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| data | TaskUpdateWithoutMainTaskInput | TaskUncheckedUpdateWithoutMainTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskScalarWhereInput | No |
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutMainTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | No |
| update | UserTaskLinkUpdateWithoutTaskInput | UserTaskLinkUncheckedUpdateWithoutTaskInput | No |
| create | UserTaskLinkCreateWithoutTaskInput | UserTaskLinkUncheckedCreateWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTaskLinkWhereUniqueInput | No |
| data | UserTaskLinkUpdateWithoutTaskInput | UserTaskLinkUncheckedUpdateWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserTaskLinkScalarWhereInput | No |
| data | UserTaskLinkUpdateManyMutationInput | UserTaskLinkUncheckedUpdateManyWithoutTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TodoUpdateWithoutTasksInput | TodoUncheckedUpdateWithoutTasksInput | No |
| create | TodoCreateWithoutTasksInput | TodoUncheckedCreateWithoutTasksInput | No |
| where | TodoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TodoWhereInput | No |
| data | TodoUpdateWithoutTasksInput | TodoUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTasksInput | UserUncheckedCreateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| owner | UserCreateNestedOneWithoutTasksAuthorInput | No |
| org | OrganizationCreateNestedOneWithoutTasksInput | No |
| groups | GroupCreateNestedManyWithoutTasksInput | No |
| mainTask | TaskCreateNestedOneWithoutSubTasksInput | No |
| SubTasks | TaskCreateNestedManyWithoutMainTaskInput | No |
| todo | TodoCreateNestedOneWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutTasksInput | No |
| SubTasks | TaskUncheckedCreateNestedManyWithoutMainTaskInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutUsersInput | TaskUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTasksInput | UserUncheckedUpdateWithoutTasksInput | No |
| create | UserCreateWithoutTasksInput | UserUncheckedCreateWithoutTasksInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTasksInput | UserUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TaskUpdateWithoutUsersInput | TaskUncheckedUpdateWithoutUsersInput | No |
| create | TaskCreateWithoutUsersInput | TaskUncheckedCreateWithoutUsersInput | No |
| where | TaskWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereInput | No |
| data | TaskUpdateWithoutUsersInput | TaskUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Files | FileCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Files | FileUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutPostsInput | OrganizationUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Users | UserCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoCreateNestedManyWithoutGroupsInput | No |
| Files | FileCreateNestedManyWithoutGroupsInput | No |
| org | OrganizationCreateNestedOneWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| orgId | String | No |
| Users | UserUncheckedCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutGroupsInput | No |
| Files | FileUncheckedCreateNestedManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| create | GroupCreateWithoutPostsInput | GroupUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderCategory | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderCategory | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutPostsInput | CategoryUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyPostInput | CommentCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| user | UserCreateNestedOneWithoutPosts_likedInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostLikeWhereUniqueInput | No |
| create | PostLikeCreateWithoutPostInput | PostLikeUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostLikeCreateManyPostInput | PostLikeCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPostsInput | UserUncheckedUpdateWithoutPostsInput | No |
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutPostsInput | UserUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutPostsInput | OrganizationUncheckedUpdateWithoutPostsInput | No |
| create | OrganizationCreateWithoutPostsInput | OrganizationUncheckedCreateWithoutPostsInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutPostsInput | OrganizationUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| update | GroupUpdateWithoutPostsInput | GroupUncheckedUpdateWithoutPostsInput | No |
| create | GroupCreateWithoutPostsInput | GroupUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| data | GroupUpdateWithoutPostsInput | GroupUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupScalarWhereInput | No |
| data | GroupUpdateManyMutationInput | GroupUncheckedUpdateManyWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| update | CategoryUpdateWithoutPostsInput | CategoryUncheckedUpdateWithoutPostsInput | No |
| create | CategoryCreateWithoutPostsInput | CategoryUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| data | CategoryUpdateWithoutPostsInput | CategoryUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryScalarWhereInput | No |
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| OR | CategoryScalarWhereInput[] | No |
| NOT | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| numSeq | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolNullableFilter | Boolean | Null | Yes |
| isPublic | BoolNullableFilter | Boolean | Null | Yes |
| isDeleted | IntNullableFilter | Int | Null | Yes |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| orderCategory | IntFilter | Int | No |
| name | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutPostInput | CommentUncheckedUpdateWithoutPostInput | No |
| create | CommentCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutPostInput | CommentUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostLikeWhereUniqueInput | No |
| update | PostLikeUpdateWithoutPostInput | PostLikeUncheckedUpdateWithoutPostInput | No |
| create | PostLikeCreateWithoutPostInput | PostLikeUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostLikeWhereUniqueInput | No |
| data | PostLikeUpdateWithoutPostInput | PostLikeUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostLikeScalarWhereInput | No |
| data | PostLikeUpdateManyMutationInput | PostLikeUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| owner | UserCreateNestedOneWithoutPostsInput | No |
| org | OrganizationCreateNestedOneWithoutPostsInput | No |
| groups | GroupCreateNestedManyWithoutPostsInput | No |
| Comments | CommentCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutPostsInput | No |
| Comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| LikedBys | PostLikeUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutCategoriesInput | PostUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| update | PostUpdateWithoutCategoriesInput | PostUncheckedUpdateWithoutCategoriesInput | No |
| create | PostCreateWithoutCategoriesInput | PostUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| data | PostUpdateWithoutCategoriesInput | PostUncheckedUpdateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostScalarWhereInput | No |
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| owner | UserCreateNestedOneWithoutPostsInput | No |
| org | OrganizationCreateNestedOneWithoutPostsInput | No |
| groups | GroupCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryCreateNestedManyWithoutPostsInput | No |
| LikedBys | PostLikeCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryUncheckedCreateNestedManyWithoutPostsInput | No |
| LikedBys | PostLikeUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutCommentsInput | PostUncheckedUpdateWithoutCommentsInput | No |
| create | PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput | No |
| where | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereInput | No |
| data | PostUpdateWithoutCommentsInput | PostUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| owner | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutPostsNestedInput | No |
| groups | GroupUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUpdateManyWithoutPostsNestedInput | No |
| LikedBys | PostLikeUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groups | GroupUncheckedUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUncheckedUpdateManyWithoutPostsNestedInput | No |
| LikedBys | PostLikeUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFilesInput | UserUncheckedCreateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| OrgEmails | OrgEmailCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainCreateNestedManyWithoutOrgInput | No |
| mainOrg | OrganizationCreateNestedOneWithoutOrgEntityInput | No |
| OrgEntity | OrganizationCreateNestedManyWithoutMainOrgInput | No |
| Members | UserCreateNestedManyWithoutOrgsInput | No |
| Posts | PostCreateNestedManyWithoutOrgInput | No |
| Groups | GroupCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskCreateNestedManyWithoutOrgInput | No |
| Todos | TodoCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| mainOrgId | String | Null | Yes |
| OrgEmails | OrgEmailUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgDomains | OrgDomainUncheckedCreateNestedManyWithoutOrgInput | No |
| OrgEntity | OrganizationUncheckedCreateNestedManyWithoutMainOrgInput | No |
| Members | UserUncheckedCreateNestedManyWithoutOrgsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutOrgInput | No |
| Groups | GroupUncheckedCreateNestedManyWithoutOrgInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutOrgInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutOrgInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutFilesInput | OrganizationUncheckedCreateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Users | UserCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoCreateNestedManyWithoutGroupsInput | No |
| Posts | PostCreateNestedManyWithoutGroupsInput | No |
| org | OrganizationCreateNestedOneWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| orgId | String | No |
| Users | UserUncheckedCreateNestedManyWithoutGroupsInput | No |
| Tasks | TaskUncheckedCreateNestedManyWithoutGroupsInput | No |
| Todos | TodoUncheckedCreateNestedManyWithoutGroupsInput | No |
| Posts | PostUncheckedCreateNestedManyWithoutGroupsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| create | GroupCreateWithoutFilesInput | GroupUncheckedCreateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFilesInput | UserUncheckedUpdateWithoutFilesInput | No |
| create | UserCreateWithoutFilesInput | UserUncheckedCreateWithoutFilesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutFilesInput | UserUncheckedUpdateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutFilesInput | OrganizationUncheckedUpdateWithoutFilesInput | No |
| create | OrganizationCreateWithoutFilesInput | OrganizationUncheckedCreateWithoutFilesInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutFilesInput | OrganizationUncheckedUpdateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| update | GroupUpdateWithoutFilesInput | GroupUncheckedUpdateWithoutFilesInput | No |
| create | GroupCreateWithoutFilesInput | GroupUncheckedCreateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupWhereUniqueInput | No |
| data | GroupUpdateWithoutFilesInput | GroupUncheckedUpdateWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GroupScalarWhereInput | No |
| data | GroupUpdateManyMutationInput | GroupUncheckedUpdateManyWithoutFilesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowingsInput | UserUncheckedCreateWithoutFollowingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowersInput | UserUncheckedUpdateWithoutFollowersInput | No |
| create | UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutFollowersInput | UserUncheckedUpdateWithoutFollowersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowingsInput | UserUncheckedUpdateWithoutFollowingsInput | No |
| create | UserCreateWithoutFollowingsInput | UserUncheckedCreateWithoutFollowingsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutFollowingsInput | UserUncheckedUpdateWithoutFollowingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPosts_likedInput | UserUncheckedCreateWithoutPosts_likedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| owner | UserCreateNestedOneWithoutPostsInput | No |
| org | OrganizationCreateNestedOneWithoutPostsInput | No |
| groups | GroupCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryCreateNestedManyWithoutPostsInput | No |
| Comments | CommentCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| groups | GroupUncheckedCreateNestedManyWithoutPostsInput | No |
| Categories | CategoryUncheckedCreateNestedManyWithoutPostsInput | No |
| Comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutLikedBysInput | PostUncheckedCreateWithoutLikedBysInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPosts_likedInput | UserUncheckedUpdateWithoutPosts_likedInput | No |
| create | UserCreateWithoutPosts_likedInput | UserUncheckedCreateWithoutPosts_likedInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutPosts_likedInput | UserUncheckedUpdateWithoutPosts_likedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutLikedBysInput | PostUncheckedUpdateWithoutLikedBysInput | No |
| create | PostCreateWithoutLikedBysInput | PostUncheckedCreateWithoutLikedBysInput | No |
| where | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereInput | No |
| data | PostUpdateWithoutLikedBysInput | PostUncheckedUpdateWithoutLikedBysInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| owner | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutPostsNestedInput | No |
| groups | GroupUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groups | GroupUncheckedUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUncheckedUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutStoriesInput | UserUncheckedCreateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutStoriesInput | UserUncheckedUpdateWithoutStoriesInput | No |
| create | UserCreateWithoutStoriesInput | UserUncheckedCreateWithoutStoriesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutStoriesInput | UserUncheckedUpdateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| description | String | Null | Yes |
| org | OrganizationCreateNestedOneWithoutOrgEmailsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| description | String | Null | Yes |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailWhereUniqueInput | No |
| create | OrgEmailCreateWithoutOrgEmailUseTosInput | OrgEmailUncheckedCreateWithoutOrgEmailUseTosInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrgEmailUpdateWithoutOrgEmailUseTosInput | OrgEmailUncheckedUpdateWithoutOrgEmailUseTosInput | No |
| create | OrgEmailCreateWithoutOrgEmailUseTosInput | OrgEmailUncheckedCreateWithoutOrgEmailUseTosInput | No |
| where | OrgEmailWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrgEmailWhereInput | No |
| data | OrgEmailUpdateWithoutOrgEmailUseTosInput | OrgEmailUncheckedUpdateWithoutOrgEmailUseTosInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| org | OrganizationUpdateOneWithoutOrgEmailsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutApiKeysInput | UserUncheckedCreateWithoutApiKeysInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| scope | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| scope | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ScopeWhereUniqueInput | No |
| create | ScopeCreateWithoutApiKeyInput | ScopeUncheckedCreateWithoutApiKeyInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutApiKeysInput | UserUncheckedUpdateWithoutApiKeysInput | No |
| create | UserCreateWithoutApiKeysInput | UserUncheckedCreateWithoutApiKeysInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutApiKeysInput | UserUncheckedUpdateWithoutApiKeysInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ScopeWhereUniqueInput | No |
| update | ScopeUpdateWithoutApiKeyInput | ScopeUncheckedUpdateWithoutApiKeyInput | No |
| create | ScopeCreateWithoutApiKeyInput | ScopeUncheckedCreateWithoutApiKeyInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ScopeWhereUniqueInput | No |
| data | ScopeUpdateWithoutApiKeyInput | ScopeUncheckedUpdateWithoutApiKeyInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ScopeScalarWhereInput | No |
| data | ScopeUpdateManyMutationInput | ScopeUncheckedUpdateManyWithoutApiKeyInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ScopeScalarWhereInput | ScopeScalarWhereInput[] | No |
| OR | ScopeScalarWhereInput[] | No |
| NOT | ScopeScalarWhereInput | ScopeScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| published | BoolFilter | Boolean | No |
| isPublic | BoolFilter | Boolean | No |
| isDeleted | IntFilter | Int | No |
| isDeletedDT | DateTimeNullableFilter | DateTime | Null | Yes |
| scope | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| key | String | No |
| uuid | String | No |
| user | UserCreateNestedOneWithoutApiKeysInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| key | String | No |
| uuid | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApiKeyWhereUniqueInput | No |
| create | ApiKeyCreateWithoutScopesInput | ApiKeyUncheckedCreateWithoutScopesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApiKeyWhereUniqueInput | No |
| update | ApiKeyUpdateWithoutScopesInput | ApiKeyUncheckedUpdateWithoutScopesInput | No |
| create | ApiKeyCreateWithoutScopesInput | ApiKeyUncheckedCreateWithoutScopesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApiKeyWhereUniqueInput | No |
| data | ApiKeyUpdateWithoutScopesInput | ApiKeyUncheckedUpdateWithoutScopesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApiKeyScalarWhereInput | No |
| data | ApiKeyUpdateManyMutationInput | ApiKeyUncheckedUpdateManyWithoutScopesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTokensInput | UserUncheckedCreateWithoutTokensInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTokensInput | UserUncheckedUpdateWithoutTokensInput | No |
| create | UserCreateWithoutTokensInput | UserUncheckedCreateWithoutTokensInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTokensInput | UserUncheckedUpdateWithoutTokensInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutChangesLogsInput | UserUncheckedCreateWithoutChangesLogsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutChangesLogsInput | UserUncheckedUpdateWithoutChangesLogsInput | No |
| create | UserCreateWithoutChangesLogsInput | UserUncheckedCreateWithoutChangesLogsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutChangesLogsInput | UserUncheckedUpdateWithoutChangesLogsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| description | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| domainName | String | No |
| extension | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| name | String | No |
| description | String | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | No |
| webSite | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| orderGroup | Int | No |
| name | String | No |
| description | String | Null | Yes |
| isActiv | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| OrgEmailUseTos | OrgEmailUseToUpdateManyWithoutEmailOrgNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| OrgEmailUseTos | OrgEmailUseToUncheckedUpdateManyWithoutEmailOrgNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domainName | String | StringFieldUpdateOperationsInput | No |
| extension | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domainName | String | StringFieldUpdateOperationsInput | No |
| extension | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| domainName | String | StringFieldUpdateOperationsInput | No |
| extension | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | StringFieldUpdateOperationsInput | No |
| webSite | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| owner | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| groups | GroupUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groups | GroupUncheckedUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUncheckedUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUncheckedUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Users | UserUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUpdateManyWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Users | UserUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| owner | UserUpdateOneRequiredWithoutFilesNestedInput | No |
| groups | GroupUpdateManyWithoutFilesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| groups | GroupUncheckedUpdateManyWithoutFilesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orderTask | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| taskState | TaskState | EnumTaskStateFieldUpdateOperationsInput | No |
| mainTaskId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orderTodo | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoState | TodoState | EnumTodoStateFieldUpdateOperationsInput | No |
| mainTodoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| useTo | String | No |
| isActiv | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| useTo | String | StringFieldUpdateOperationsInput | No |
| isActiv | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| useTo | String | StringFieldUpdateOperationsInput | No |
| isActiv | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| useTo | String | StringFieldUpdateOperationsInput | No |
| isActiv | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| String | No | |
| lastName | String | Null | Yes |
| firstName | String | Null | Yes |
| title | Title | Null | Yes |
| nickName | String | Null | Yes |
| Gender | Gender | Null | Yes |
| social | NullableJsonNullValueInput | Json | No |
| Language | Language | Null | Yes |
| dob | DateTime | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| isValidated | DateTime | Null | Yes |
| isSuspended | DateTime | Null | Yes |
| Roles | UserCreateRolesInput | Role[] | No |
| Permissions | UserCreatePermissionsInput | PermissionClaim[] | No |
| isTfaEnable | Boolean | No |
| tfaSecret | String | Null | Yes |
| passWordFaker | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orgId | String | No |
| orderPost | Int | Null | Yes |
| title | String | No |
| content | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| caption | String | No |
| Name | Type | Nullable |
|---|---|---|
| todoId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| mainTodoId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| taskId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| todoId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| orgId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | Null | Yes |
| data | String | Null | Yes |
| size | Int | Null | Yes |
| isArchived | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| doneAt | DateTime | No |
| modelName | String | No |
| recordId | String | No |
| operation | String | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| tokenId | String | Null | Yes |
| type | TokenType | No |
| emailToken | String | Null | Yes |
| valid | Boolean | No |
| expiration | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| key | String | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| follower_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| post_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| address | NullableJsonNullValueInput | Json | No |
| emailITAdmin | String | StringFieldUpdateOperationsInput | No |
| webSite | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mainOrgId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderProfile | Int | IntFieldUpdateOperationsInput | No |
| bio | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderProfile | Int | IntFieldUpdateOperationsInput | No |
| bio | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderProfile | Int | IntFieldUpdateOperationsInput | No |
| bio | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Tasks | TaskUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUpdateManyWithoutGroupsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Tasks | TaskUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| org | OrganizationUpdateOneRequiredWithoutPostsNestedInput | No |
| groups | GroupUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groups | GroupUncheckedUpdateManyWithoutPostsNestedInput | No |
| Categories | CategoryUncheckedUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUncheckedUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| post | PostUpdateOneRequiredWithoutCommentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| caption | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| caption | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| caption | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| todo | TodoUpdateOneRequiredWithoutUsersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| todoId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| todoId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTodo | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoState | TodoState | EnumTodoStateFieldUpdateOperationsInput | No |
| mainTodoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| task | TaskUpdateOneRequiredWithoutUsersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| taskId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| taskId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTask | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| taskState | TaskState | EnumTaskStateFieldUpdateOperationsInput | No |
| mainTaskId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| org | OrganizationUpdateOneRequiredWithoutFilesNestedInput | No |
| groups | GroupUpdateManyWithoutFilesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| groups | GroupUncheckedUpdateManyWithoutFilesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| doneAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| modelName | String | StringFieldUpdateOperationsInput | No |
| recordId | String | StringFieldUpdateOperationsInput | No |
| operation | String | StringFieldUpdateOperationsInput | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| doneAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| modelName | String | StringFieldUpdateOperationsInput | No |
| recordId | String | StringFieldUpdateOperationsInput | No |
| operation | String | StringFieldUpdateOperationsInput | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| doneAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| modelName | String | StringFieldUpdateOperationsInput | No |
| recordId | String | StringFieldUpdateOperationsInput | No |
| operation | String | StringFieldUpdateOperationsInput | No |
| newData | JsonNullValueInput | Json | No |
| oldData | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| tokenId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
| emailToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| valid | Boolean | BoolFieldUpdateOperationsInput | No |
| expiration | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| tokenId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
| emailToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| valid | Boolean | BoolFieldUpdateOperationsInput | No |
| expiration | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| tokenId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | TokenType | EnumTokenTypeFieldUpdateOperationsInput | No |
| emailToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| valid | Boolean | BoolFieldUpdateOperationsInput | No |
| expiration | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| Scopes | ScopeUpdateManyWithoutApiKeyNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| Scopes | ScopeUncheckedUpdateManyWithoutApiKeyNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowingsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| follower_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| follower_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutFollowersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| post | PostUpdateOneRequiredWithoutLikedBysNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| post_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| post_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTask | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| taskState | TaskState | EnumTaskStateFieldUpdateOperationsInput | No |
| mainTaskId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTodo | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoState | TodoState | EnumTodoStateFieldUpdateOperationsInput | No |
| mainTodoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| owner | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutPostsNestedInput | No |
| Categories | CategoryUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Categories | CategoryUncheckedUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUncheckedUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| owner | UserUpdateOneRequiredWithoutFilesNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutFilesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| storageName | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| data | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isArchived | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | Null | Yes |
| todoState | TodoState | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| mainTaskId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Users | UserUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUpdateManyWithoutGroupsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Users | UserUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTodo | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| todoState | TodoState | EnumTodoStateFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutTodoNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTask | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| taskState | TaskState | EnumTaskStateFieldUpdateOperationsInput | No |
| mainTaskId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | Null | Yes |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | Null | Yes |
| taskState | TaskState | No |
| todoId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Users | UserUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUpdateManyWithoutGroupsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Users | UserUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderTask | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| taskState | TaskState | EnumTaskStateFieldUpdateOperationsInput | No |
| todoId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutTasksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| isAuthor | Boolean | BoolFieldUpdateOperationsInput | No |
| isAssigned | Boolean | BoolFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | Null | Yes |
| isPublic | Boolean | Null | Yes |
| isDeleted | Int | Null | Yes |
| isDeletedDT | DateTime | Null | Yes |
| orderComment | Int | No |
| content | String | Null | Yes |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Users | UserUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUpdateManyWithoutGroupsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Users | UserUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Files | FileUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderCategory | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderCategory | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderCategory | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| author | UserUpdateOneRequiredWithoutCommentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isDeleted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderComment | Int | IntFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutPosts_likedNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| owner | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutPostsNestedInput | No |
| groups | GroupUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groups | GroupUncheckedUpdateManyWithoutPostsNestedInput | No |
| Comments | CommentUncheckedUpdateManyWithoutPostNestedInput | No |
| LikedBys | PostLikeUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| numSeq | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| orgId | String | StringFieldUpdateOperationsInput | No |
| orderPost | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Users | UserUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUpdateManyWithoutGroupsNestedInput | No |
| org | OrganizationUpdateOneRequiredWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Users | UserUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Tasks | TaskUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Todos | TodoUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Posts | PostUncheckedUpdateManyWithoutGroupsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orderGroup | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isActiv | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| orgId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutApiKeysNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| published | Boolean | BoolFieldUpdateOperationsInput | No |
| isPublic | Boolean | BoolFieldUpdateOperationsInput | No |
| isDeleted | Int | IntFieldUpdateOperationsInput | No |
| isDeletedDT | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| key | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| name | String | Yes |
| description | String | No |
| address | Json | No |
| emailITAdmin | String | Yes |
| webSite | String | No |
| mainOrgId | String | No |
| OrgEmails | OrgEmail[] | No |
| OrgDomains | OrgDomain[] | No |
| mainOrg | Organization | No |
| OrgEntity | Organization[] | No |
| Members | User[] | No |
| Posts | Post[] | No |
| Groups | Group[] | No |
| Files | File[] | No |
| Tasks | Task[] | No |
| Todos | Todo[] | No |
| _count | OrganizationCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| String | Yes | |
| description | String | No |
| orgId | String | Yes |
| org | Organization | No |
| OrgEmailUseTos | OrgEmailUseTo[] | No |
| _count | OrgEmailCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| domainName | String | Yes |
| extension | String | Yes |
| orgId | String | Yes |
| org | Organization | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| String | Yes | |
| lastName | String | No |
| firstName | String | No |
| title | Title | No |
| nickName | String | No |
| Gender | Gender | No |
| social | Json | No |
| Language | Language | No |
| dob | DateTime | No |
| address | Json | No |
| isValidated | DateTime | No |
| isSuspended | DateTime | No |
| managerId | String | No |
| Roles | Role[] | No |
| Permissions | PermissionClaim[] | No |
| isTfaEnable | Boolean | Yes |
| tfaSecret | String | No |
| passWordFaker | String | No |
| Orgs | Organization[] | No |
| manager | User | No |
| Team | User[] | No |
| Profiles | Profile[] | No |
| Groups | Group[] | No |
| Posts | Post[] | No |
| Comments | Comment[] | No |
| Stories | Story[] | No |
| Todo | UserTodoLink[] | No |
| TodosAuthor | Todo[] | No |
| Tasks | UserTaskLink[] | No |
| TasksAuthor | Task[] | No |
| Files | File[] | No |
| ChangesLogs | ChangesTracking[] | No |
| Tokens | Token[] | No |
| ApiKeys | ApiKey[] | No |
| userSecret | UserSecret | No |
| followers | UserFollower[] | No |
| followings | UserFollower[] | No |
| posts_liked | PostLike[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| userId | String | Yes |
| pwdHash | String | No |
| salt | String | No |
| isAdmin | Boolean | No |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| orderProfile | Int | Yes |
| bio | String | Yes |
| Users | User[] | No |
| _count | ProfileCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| orderGroup | Int | Yes |
| name | String | Yes |
| description | String | No |
| isActiv | DateTime | No |
| orgId | String | Yes |
| Users | User[] | No |
| Tasks | Task[] | No |
| Todos | Todo[] | No |
| Posts | Post[] | No |
| Files | File[] | No |
| org | Organization | Yes |
| _count | GroupCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | Yes |
| ownerId | String | Yes |
| orgId | String | Yes |
| orderTodo | Int | Yes |
| title | String | Yes |
| content | String | No |
| todoState | TodoState | Yes |
| mainTodoId | String | No |
| owner | User | Yes |
| org | Organization | Yes |
| groups | Group[] | No |
| mainTodo | Todo | No |
| SubTodos | Todo[] | No |
| Users | UserTodoLink[] | No |
| Tasks | Task[] | No |
| _count | TodoCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| todoId | String | Yes |
| isAuthor | Boolean | Yes |
| isAssigned | Boolean | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| comment | String | Yes |
| user | User | Yes |
| todo | Todo | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | Yes |
| ownerId | String | Yes |
| orgId | String | Yes |
| orderTask | Int | Yes |
| title | String | Yes |
| content | String | No |
| taskState | TaskState | Yes |
| mainTaskId | String | No |
| todoId | String | No |
| owner | User | Yes |
| org | Organization | Yes |
| groups | Group[] | No |
| mainTask | Task | No |
| SubTasks | Task[] | No |
| Users | UserTaskLink[] | No |
| todo | Todo | No |
| _count | TaskCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| taskId | String | Yes |
| isAuthor | Boolean | Yes |
| isAssigned | Boolean | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| comment | String | Yes |
| user | User | Yes |
| task | Task | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | Yes |
| ownerId | String | Yes |
| orgId | String | Yes |
| orderPost | Int | No |
| title | String | Yes |
| content | String | No |
| owner | User | Yes |
| org | Organization | Yes |
| groups | Group[] | No |
| Categories | Category[] | No |
| Comments | Comment[] | No |
| LikedBys | PostLike[] | No |
| _count | PostCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderCategory | Int | Yes |
| name | String | Yes |
| Posts | Post[] | No |
| _count | CategoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderComment | Int | Yes |
| content | String | No |
| postId | String | Yes |
| authorId | String | Yes |
| post | Post | Yes |
| author | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | Yes |
| ownerId | String | Yes |
| orgId | String | Yes |
| name | String | Yes |
| storageName | String | Yes |
| type | String | No |
| data | String | No |
| size | Int | No |
| isArchived | DateTime | No |
| owner | User | Yes |
| org | Organization | Yes |
| groups | Group[] | No |
| _count | FileCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | Yes |
| follower_id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| follower | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | Yes |
| post_id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| post | Post | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| caption | String | Yes |
| user_id | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| type | String | Yes |
| url | String | Yes |
| associated_id | String | Yes |
| sequence | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| name | String | Yes |
| value | String | Yes |
| utility | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| useTo | String | Yes |
| isActiv | Boolean | Yes |
| emailOrgId | Int | Yes |
| emailOrg | OrgEmail | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| domain | String | Yes |
| allowed | Boolean | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| userId | String | Yes |
| tokenId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| key | String | Yes |
| uuid | String | Yes |
| userId | String | Yes |
| user | User | Yes |
| Scopes | Scope[] | No |
| _count | ApiKeyCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| scope | String | Yes |
| ApiKey | ApiKey[] | No |
| _count | ScopeCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| tokenId | String | No |
| type | TokenType | Yes |
| emailToken | String | No |
| valid | Boolean | Yes |
| expiration | DateTime | Yes |
| userId | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| doneAt | DateTime | Yes |
| modifiedById | String | Yes |
| modelName | String | Yes |
| recordId | String | Yes |
| operation | String | Yes |
| newData | Json | Yes |
| oldData | Json | Yes |
| modifiedBy | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isValidated | Boolean | Yes |
| emailToken | String | Yes |
| timeStamp | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | OrganizationCountAggregateOutputType | No |
| _avg | OrganizationAvgAggregateOutputType | No |
| _sum | OrganizationSumAggregateOutputType | No |
| _min | OrganizationMinAggregateOutputType | No |
| _max | OrganizationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| name | String | Yes |
| description | String | No |
| address | Json | No |
| emailITAdmin | String | Yes |
| webSite | String | No |
| mainOrgId | String | No |
| _count | OrganizationCountAggregateOutputType | No |
| _avg | OrganizationAvgAggregateOutputType | No |
| _sum | OrganizationSumAggregateOutputType | No |
| _min | OrganizationMinAggregateOutputType | No |
| _max | OrganizationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrgEmailCountAggregateOutputType | No |
| _avg | OrgEmailAvgAggregateOutputType | No |
| _sum | OrgEmailSumAggregateOutputType | No |
| _min | OrgEmailMinAggregateOutputType | No |
| _max | OrgEmailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| String | Yes | |
| description | String | No |
| orgId | String | Yes |
| _count | OrgEmailCountAggregateOutputType | No |
| _avg | OrgEmailAvgAggregateOutputType | No |
| _sum | OrgEmailSumAggregateOutputType | No |
| _min | OrgEmailMinAggregateOutputType | No |
| _max | OrgEmailMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrgDomainCountAggregateOutputType | No |
| _avg | OrgDomainAvgAggregateOutputType | No |
| _sum | OrgDomainSumAggregateOutputType | No |
| _min | OrgDomainMinAggregateOutputType | No |
| _max | OrgDomainMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| domainName | String | Yes |
| extension | String | Yes |
| orgId | String | Yes |
| _count | OrgDomainCountAggregateOutputType | No |
| _avg | OrgDomainAvgAggregateOutputType | No |
| _sum | OrgDomainSumAggregateOutputType | No |
| _min | OrgDomainMinAggregateOutputType | No |
| _max | OrgDomainMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| String | Yes | |
| lastName | String | No |
| firstName | String | No |
| title | Title | No |
| nickName | String | No |
| Gender | Gender | No |
| social | Json | No |
| Language | Language | No |
| dob | DateTime | No |
| address | Json | No |
| isValidated | DateTime | No |
| isSuspended | DateTime | No |
| managerId | String | No |
| Roles | Role[] | No |
| Permissions | PermissionClaim[] | No |
| isTfaEnable | Boolean | Yes |
| tfaSecret | String | No |
| passWordFaker | String | No |
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserSecretCountAggregateOutputType | No |
| _avg | UserSecretAvgAggregateOutputType | No |
| _sum | UserSecretSumAggregateOutputType | No |
| _min | UserSecretMinAggregateOutputType | No |
| _max | UserSecretMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| userId | String | Yes |
| pwdHash | String | No |
| salt | String | No |
| isAdmin | Boolean | No |
| _count | UserSecretCountAggregateOutputType | No |
| _avg | UserSecretAvgAggregateOutputType | No |
| _sum | UserSecretSumAggregateOutputType | No |
| _min | UserSecretMinAggregateOutputType | No |
| _max | UserSecretMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ProfileCountAggregateOutputType | No |
| _avg | ProfileAvgAggregateOutputType | No |
| _sum | ProfileSumAggregateOutputType | No |
| _min | ProfileMinAggregateOutputType | No |
| _max | ProfileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| orderProfile | Int | Yes |
| bio | String | Yes |
| _count | ProfileCountAggregateOutputType | No |
| _avg | ProfileAvgAggregateOutputType | No |
| _sum | ProfileSumAggregateOutputType | No |
| _min | ProfileMinAggregateOutputType | No |
| _max | ProfileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | GroupCountAggregateOutputType | No |
| _avg | GroupAvgAggregateOutputType | No |
| _sum | GroupSumAggregateOutputType | No |
| _min | GroupMinAggregateOutputType | No |
| _max | GroupMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| orderGroup | Int | Yes |
| name | String | Yes |
| description | String | No |
| isActiv | DateTime | No |
| orgId | String | Yes |
| _count | GroupCountAggregateOutputType | No |
| _avg | GroupAvgAggregateOutputType | No |
| _sum | GroupSumAggregateOutputType | No |
| _min | GroupMinAggregateOutputType | No |
| _max | GroupMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TodoCountAggregateOutputType | No |
| _avg | TodoAvgAggregateOutputType | No |
| _sum | TodoSumAggregateOutputType | No |
| _min | TodoMinAggregateOutputType | No |
| _max | TodoMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | Yes |
| ownerId | String | Yes |
| orgId | String | Yes |
| orderTodo | Int | Yes |
| title | String | Yes |
| content | String | No |
| todoState | TodoState | Yes |
| mainTodoId | String | No |
| _count | TodoCountAggregateOutputType | No |
| _avg | TodoAvgAggregateOutputType | No |
| _sum | TodoSumAggregateOutputType | No |
| _min | TodoMinAggregateOutputType | No |
| _max | TodoMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserTodoLinkCountAggregateOutputType | No |
| _min | UserTodoLinkMinAggregateOutputType | No |
| _max | UserTodoLinkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| todoId | String | Yes |
| isAuthor | Boolean | Yes |
| isAssigned | Boolean | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| comment | String | Yes |
| _count | UserTodoLinkCountAggregateOutputType | No |
| _min | UserTodoLinkMinAggregateOutputType | No |
| _max | UserTodoLinkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TaskCountAggregateOutputType | No |
| _avg | TaskAvgAggregateOutputType | No |
| _sum | TaskSumAggregateOutputType | No |
| _min | TaskMinAggregateOutputType | No |
| _max | TaskMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | Yes |
| ownerId | String | Yes |
| orgId | String | Yes |
| orderTask | Int | Yes |
| title | String | Yes |
| content | String | No |
| taskState | TaskState | Yes |
| mainTaskId | String | No |
| todoId | String | No |
| _count | TaskCountAggregateOutputType | No |
| _avg | TaskAvgAggregateOutputType | No |
| _sum | TaskSumAggregateOutputType | No |
| _min | TaskMinAggregateOutputType | No |
| _max | TaskMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserTaskLinkCountAggregateOutputType | No |
| _min | UserTaskLinkMinAggregateOutputType | No |
| _max | UserTaskLinkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| taskId | String | Yes |
| isAuthor | Boolean | Yes |
| isAssigned | Boolean | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| comment | String | Yes |
| _count | UserTaskLinkCountAggregateOutputType | No |
| _min | UserTaskLinkMinAggregateOutputType | No |
| _max | UserTaskLinkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PostCountAggregateOutputType | No |
| _avg | PostAvgAggregateOutputType | No |
| _sum | PostSumAggregateOutputType | No |
| _min | PostMinAggregateOutputType | No |
| _max | PostMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | Yes |
| ownerId | String | Yes |
| orgId | String | Yes |
| orderPost | Int | No |
| title | String | Yes |
| content | String | No |
| _count | PostCountAggregateOutputType | No |
| _avg | PostAvgAggregateOutputType | No |
| _sum | PostSumAggregateOutputType | No |
| _min | PostMinAggregateOutputType | No |
| _max | PostMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CategoryCountAggregateOutputType | No |
| _avg | CategoryAvgAggregateOutputType | No |
| _sum | CategorySumAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderCategory | Int | Yes |
| name | String | Yes |
| _count | CategoryCountAggregateOutputType | No |
| _avg | CategoryAvgAggregateOutputType | No |
| _sum | CategorySumAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CommentCountAggregateOutputType | No |
| _avg | CommentAvgAggregateOutputType | No |
| _sum | CommentSumAggregateOutputType | No |
| _min | CommentMinAggregateOutputType | No |
| _max | CommentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderComment | Int | Yes |
| content | String | No |
| postId | String | Yes |
| authorId | String | Yes |
| _count | CommentCountAggregateOutputType | No |
| _avg | CommentAvgAggregateOutputType | No |
| _sum | CommentSumAggregateOutputType | No |
| _min | CommentMinAggregateOutputType | No |
| _max | CommentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FileCountAggregateOutputType | No |
| _avg | FileAvgAggregateOutputType | No |
| _sum | FileSumAggregateOutputType | No |
| _min | FileMinAggregateOutputType | No |
| _max | FileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | Yes |
| ownerId | String | Yes |
| orgId | String | Yes |
| name | String | Yes |
| storageName | String | Yes |
| type | String | No |
| data | String | No |
| size | Int | No |
| isArchived | DateTime | No |
| _count | FileCountAggregateOutputType | No |
| _avg | FileAvgAggregateOutputType | No |
| _sum | FileSumAggregateOutputType | No |
| _min | FileMinAggregateOutputType | No |
| _max | FileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserFollowerCountAggregateOutputType | No |
| _min | UserFollowerMinAggregateOutputType | No |
| _max | UserFollowerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | Yes |
| follower_id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | UserFollowerCountAggregateOutputType | No |
| _min | UserFollowerMinAggregateOutputType | No |
| _max | UserFollowerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PostLikeCountAggregateOutputType | No |
| _min | PostLikeMinAggregateOutputType | No |
| _max | PostLikeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | Yes |
| post_id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | PostLikeCountAggregateOutputType | No |
| _min | PostLikeMinAggregateOutputType | No |
| _max | PostLikeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | StoryCountAggregateOutputType | No |
| _avg | StoryAvgAggregateOutputType | No |
| _sum | StorySumAggregateOutputType | No |
| _min | StoryMinAggregateOutputType | No |
| _max | StoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| caption | String | Yes |
| user_id | String | Yes |
| _count | StoryCountAggregateOutputType | No |
| _avg | StoryAvgAggregateOutputType | No |
| _sum | StorySumAggregateOutputType | No |
| _min | StoryMinAggregateOutputType | No |
| _max | StoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ImageCountAggregateOutputType | No |
| _avg | ImageAvgAggregateOutputType | No |
| _sum | ImageSumAggregateOutputType | No |
| _min | ImageMinAggregateOutputType | No |
| _max | ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| type | String | Yes |
| url | String | Yes |
| associated_id | String | Yes |
| sequence | Int | Yes |
| _count | ImageCountAggregateOutputType | No |
| _avg | ImageAvgAggregateOutputType | No |
| _sum | ImageSumAggregateOutputType | No |
| _min | ImageMinAggregateOutputType | No |
| _max | ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConfigParamCountAggregateOutputType | No |
| _avg | ConfigParamAvgAggregateOutputType | No |
| _sum | ConfigParamSumAggregateOutputType | No |
| _min | ConfigParamMinAggregateOutputType | No |
| _max | ConfigParamMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| name | String | Yes |
| value | String | Yes |
| utility | String | Yes |
| _count | ConfigParamCountAggregateOutputType | No |
| _avg | ConfigParamAvgAggregateOutputType | No |
| _sum | ConfigParamSumAggregateOutputType | No |
| _min | ConfigParamMinAggregateOutputType | No |
| _max | ConfigParamMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrgEmailUseToCountAggregateOutputType | No |
| _avg | OrgEmailUseToAvgAggregateOutputType | No |
| _sum | OrgEmailUseToSumAggregateOutputType | No |
| _min | OrgEmailUseToMinAggregateOutputType | No |
| _max | OrgEmailUseToMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| useTo | String | Yes |
| isActiv | Boolean | Yes |
| emailOrgId | Int | Yes |
| _count | OrgEmailUseToCountAggregateOutputType | No |
| _avg | OrgEmailUseToAvgAggregateOutputType | No |
| _sum | OrgEmailUseToSumAggregateOutputType | No |
| _min | OrgEmailUseToMinAggregateOutputType | No |
| _max | OrgEmailUseToMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AppEmailDomainCountAggregateOutputType | No |
| _avg | AppEmailDomainAvgAggregateOutputType | No |
| _sum | AppEmailDomainSumAggregateOutputType | No |
| _min | AppEmailDomainMinAggregateOutputType | No |
| _max | AppEmailDomainMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| domain | String | Yes |
| allowed | Boolean | Yes |
| _count | AppEmailDomainCountAggregateOutputType | No |
| _avg | AppEmailDomainAvgAggregateOutputType | No |
| _sum | AppEmailDomainSumAggregateOutputType | No |
| _min | AppEmailDomainMinAggregateOutputType | No |
| _max | AppEmailDomainMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RefreshTokenCountAggregateOutputType | No |
| _avg | RefreshTokenAvgAggregateOutputType | No |
| _sum | RefreshTokenSumAggregateOutputType | No |
| _min | RefreshTokenMinAggregateOutputType | No |
| _max | RefreshTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| userId | String | Yes |
| tokenId | String | Yes |
| _count | RefreshTokenCountAggregateOutputType | No |
| _avg | RefreshTokenAvgAggregateOutputType | No |
| _sum | RefreshTokenSumAggregateOutputType | No |
| _min | RefreshTokenMinAggregateOutputType | No |
| _max | RefreshTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ApiKeyCountAggregateOutputType | No |
| _avg | ApiKeyAvgAggregateOutputType | No |
| _sum | ApiKeySumAggregateOutputType | No |
| _min | ApiKeyMinAggregateOutputType | No |
| _max | ApiKeyMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| key | String | Yes |
| uuid | String | Yes |
| userId | String | Yes |
| _count | ApiKeyCountAggregateOutputType | No |
| _avg | ApiKeyAvgAggregateOutputType | No |
| _sum | ApiKeySumAggregateOutputType | No |
| _min | ApiKeyMinAggregateOutputType | No |
| _max | ApiKeyMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ScopeCountAggregateOutputType | No |
| _avg | ScopeAvgAggregateOutputType | No |
| _sum | ScopeSumAggregateOutputType | No |
| _min | ScopeMinAggregateOutputType | No |
| _max | ScopeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| scope | String | Yes |
| _count | ScopeCountAggregateOutputType | No |
| _avg | ScopeAvgAggregateOutputType | No |
| _sum | ScopeSumAggregateOutputType | No |
| _min | ScopeMinAggregateOutputType | No |
| _max | ScopeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TokenCountAggregateOutputType | No |
| _avg | TokenAvgAggregateOutputType | No |
| _sum | TokenSumAggregateOutputType | No |
| _min | TokenMinAggregateOutputType | No |
| _max | TokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| tokenId | String | No |
| type | TokenType | Yes |
| emailToken | String | No |
| valid | Boolean | Yes |
| expiration | DateTime | Yes |
| userId | String | Yes |
| _count | TokenCountAggregateOutputType | No |
| _avg | TokenAvgAggregateOutputType | No |
| _sum | TokenSumAggregateOutputType | No |
| _min | TokenMinAggregateOutputType | No |
| _max | TokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChangesTrackingCountAggregateOutputType | No |
| _avg | ChangesTrackingAvgAggregateOutputType | No |
| _sum | ChangesTrackingSumAggregateOutputType | No |
| _min | ChangesTrackingMinAggregateOutputType | No |
| _max | ChangesTrackingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | Yes |
| isPublic | Boolean | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | DateTime | No |
| doneAt | DateTime | Yes |
| modifiedById | String | Yes |
| modelName | String | Yes |
| recordId | String | Yes |
| operation | String | Yes |
| newData | Json | Yes |
| oldData | Json | Yes |
| _count | ChangesTrackingCountAggregateOutputType | No |
| _avg | ChangesTrackingAvgAggregateOutputType | No |
| _sum | ChangesTrackingSumAggregateOutputType | No |
| _min | ChangesTrackingMinAggregateOutputType | No |
| _max | ChangesTrackingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AccountValidationCountAggregateOutputType | No |
| _avg | AccountValidationAvgAggregateOutputType | No |
| _sum | AccountValidationSumAggregateOutputType | No |
| _min | AccountValidationMinAggregateOutputType | No |
| _max | AccountValidationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| numSeq | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isValidated | Boolean | Yes |
| emailToken | String | Yes |
| timeStamp | DateTime | Yes |
| _count | AccountValidationCountAggregateOutputType | No |
| _avg | AccountValidationAvgAggregateOutputType | No |
| _sum | AccountValidationSumAggregateOutputType | No |
| _min | AccountValidationMinAggregateOutputType | No |
| _max | AccountValidationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| OrgEmails | Int | Yes |
| OrgDomains | Int | Yes |
| OrgEntity | Int | Yes |
| Members | Int | Yes |
| Posts | Int | Yes |
| Groups | Int | Yes |
| Files | Int | Yes |
| Tasks | Int | Yes |
| Todos | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| address | Int | Yes |
| emailITAdmin | Int | Yes |
| webSite | Int | Yes |
| mainOrgId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| name | String | No |
| description | String | No |
| emailITAdmin | String | No |
| webSite | String | No |
| mainOrgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| name | String | No |
| description | String | No |
| emailITAdmin | String | No |
| webSite | String | No |
| mainOrgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| OrgEmailUseTos | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| Int | Yes | |
| description | Int | Yes |
| orgId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| String | No | |
| description | String | No |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| String | No | |
| description | String | No |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| domainName | Int | Yes |
| extension | Int | Yes |
| orgId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| domainName | String | No |
| extension | String | No |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| domainName | String | No |
| extension | String | No |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| Orgs | Int | Yes |
| Team | Int | Yes |
| Profiles | Int | Yes |
| Groups | Int | Yes |
| Posts | Int | Yes |
| Comments | Int | Yes |
| Stories | Int | Yes |
| Todo | Int | Yes |
| TodosAuthor | Int | Yes |
| Tasks | Int | Yes |
| TasksAuthor | Int | Yes |
| Files | Int | Yes |
| ChangesLogs | Int | Yes |
| Tokens | Int | Yes |
| ApiKeys | Int | Yes |
| followers | Int | Yes |
| followings | Int | Yes |
| posts_liked | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| Int | Yes | |
| lastName | Int | Yes |
| firstName | Int | Yes |
| title | Int | Yes |
| nickName | Int | Yes |
| Gender | Int | Yes |
| social | Int | Yes |
| Language | Int | Yes |
| dob | Int | Yes |
| address | Int | Yes |
| isValidated | Int | Yes |
| isSuspended | Int | Yes |
| managerId | Int | Yes |
| Roles | Int | Yes |
| Permissions | Int | Yes |
| isTfaEnable | Int | Yes |
| tfaSecret | Int | Yes |
| passWordFaker | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| String | No | |
| lastName | String | No |
| firstName | String | No |
| title | Title | No |
| nickName | String | No |
| Gender | Gender | No |
| Language | Language | No |
| dob | DateTime | No |
| isValidated | DateTime | No |
| isSuspended | DateTime | No |
| managerId | String | No |
| isTfaEnable | Boolean | No |
| tfaSecret | String | No |
| passWordFaker | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| String | No | |
| lastName | String | No |
| firstName | String | No |
| title | Title | No |
| nickName | String | No |
| Gender | Gender | No |
| Language | Language | No |
| dob | DateTime | No |
| isValidated | DateTime | No |
| isSuspended | DateTime | No |
| managerId | String | No |
| isTfaEnable | Boolean | No |
| tfaSecret | String | No |
| passWordFaker | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| userId | Int | Yes |
| pwdHash | Int | Yes |
| salt | Int | Yes |
| isAdmin | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userId | String | No |
| pwdHash | String | No |
| salt | String | No |
| isAdmin | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userId | String | No |
| pwdHash | String | No |
| salt | String | No |
| isAdmin | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| Users | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| orderProfile | Int | Yes |
| bio | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| orderProfile | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| orderProfile | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderProfile | Int | No |
| bio | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderProfile | Int | No |
| bio | String | No |
| Name | Type | Nullable |
|---|---|---|
| Users | Int | Yes |
| Tasks | Int | Yes |
| Todos | Int | Yes |
| Posts | Int | Yes |
| Files | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| orderGroup | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| isActiv | Int | Yes |
| orgId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| orderGroup | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| orderGroup | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderGroup | Int | No |
| name | String | No |
| description | String | No |
| isActiv | DateTime | No |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderGroup | Int | No |
| name | String | No |
| description | String | No |
| isActiv | DateTime | No |
| orgId | String | No |
| Name | Type | Nullable |
|---|---|---|
| groups | Int | Yes |
| SubTodos | Int | Yes |
| Users | Int | Yes |
| Tasks | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| isPublic | Int | Yes |
| ownerId | Int | Yes |
| orgId | Int | Yes |
| orderTodo | Int | Yes |
| title | Int | Yes |
| content | Int | Yes |
| todoState | Int | Yes |
| mainTodoId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| orderTodo | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| orderTodo | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | No |
| todoState | TodoState | No |
| mainTodoId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTodo | Int | No |
| title | String | No |
| content | String | No |
| todoState | TodoState | No |
| mainTodoId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| todoId | Int | Yes |
| isAuthor | Int | Yes |
| isAssigned | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| comment | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| todoId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| todoId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| groups | Int | Yes |
| SubTasks | Int | Yes |
| Users | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| isPublic | Int | Yes |
| ownerId | Int | Yes |
| orgId | Int | Yes |
| orderTask | Int | Yes |
| title | Int | Yes |
| content | Int | Yes |
| taskState | Int | Yes |
| mainTaskId | Int | Yes |
| todoId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| orderTask | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| orderTask | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | No |
| taskState | TaskState | No |
| mainTaskId | String | No |
| todoId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderTask | Int | No |
| title | String | No |
| content | String | No |
| taskState | TaskState | No |
| mainTaskId | String | No |
| todoId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| taskId | Int | Yes |
| isAuthor | Int | Yes |
| isAssigned | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| comment | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| taskId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| taskId | String | No |
| isAuthor | Boolean | No |
| isAssigned | Boolean | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | String | No |
| Name | Type | Nullable |
|---|---|---|
| groups | Int | Yes |
| Categories | Int | Yes |
| Comments | Int | Yes |
| LikedBys | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| isPublic | Int | Yes |
| ownerId | Int | Yes |
| orgId | Int | Yes |
| orderPost | Int | Yes |
| title | Int | Yes |
| content | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| orderPost | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| orderPost | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderPost | Int | No |
| title | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| orderPost | Int | No |
| title | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| Posts | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| orderCategory | Int | Yes |
| name | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| orderCategory | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| orderCategory | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderCategory | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderCategory | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| orderComment | Int | Yes |
| content | Int | Yes |
| postId | Int | Yes |
| authorId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| orderComment | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| orderComment | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderComment | Int | No |
| content | String | No |
| postId | String | No |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| orderComment | Int | No |
| content | String | No |
| postId | String | No |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| groups | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| isPublic | Int | Yes |
| ownerId | Int | Yes |
| orgId | Int | Yes |
| name | Int | Yes |
| storageName | Int | Yes |
| type | Int | Yes |
| data | Int | Yes |
| size | Int | Yes |
| isArchived | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| size | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| size | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | No |
| data | String | No |
| size | Int | No |
| isArchived | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isPublic | Boolean | No |
| ownerId | String | No |
| orgId | String | No |
| name | String | No |
| storageName | String | No |
| type | String | No |
| data | String | No |
| size | Int | No |
| isArchived | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | Int | Yes |
| follower_id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| follower_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| follower_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | Int | Yes |
| post_id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| post_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| user_id | String | No |
| post_id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| caption | Int | Yes |
| user_id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| caption | String | No |
| user_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| caption | String | No |
| user_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| type | Int | Yes |
| url | Int | Yes |
| associated_id | Int | Yes |
| sequence | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| sequence | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| type | String | No |
| url | String | No |
| associated_id | String | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| type | String | No |
| url | String | No |
| associated_id | String | No |
| sequence | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| name | Int | Yes |
| value | Int | Yes |
| utility | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| name | String | No |
| value | String | No |
| utility | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| name | String | No |
| value | String | No |
| utility | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| useTo | Int | Yes |
| isActiv | Int | Yes |
| emailOrgId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| emailOrgId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| emailOrgId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| useTo | String | No |
| isActiv | Boolean | No |
| emailOrgId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| useTo | String | No |
| isActiv | Boolean | No |
| emailOrgId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| domain | Int | Yes |
| allowed | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| domain | String | No |
| allowed | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| domain | String | No |
| allowed | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| userId | Int | Yes |
| tokenId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| userId | String | No |
| tokenId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| userId | String | No |
| tokenId | String | No |
| Name | Type | Nullable |
|---|---|---|
| Scopes | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| key | Int | Yes |
| uuid | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| key | String | No |
| uuid | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| key | String | No |
| uuid | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| ApiKey | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| scope | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| scope | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| scope | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| tokenId | Int | Yes |
| type | Int | Yes |
| emailToken | Int | Yes |
| valid | Int | Yes |
| expiration | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| tokenId | String | No |
| type | TokenType | No |
| emailToken | String | No |
| valid | Boolean | No |
| expiration | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| tokenId | String | No |
| type | TokenType | No |
| emailToken | String | No |
| valid | Boolean | No |
| expiration | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| doneAt | Int | Yes |
| modifiedById | Int | Yes |
| modelName | Int | Yes |
| recordId | Int | Yes |
| operation | Int | Yes |
| newData | Int | Yes |
| oldData | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| doneAt | DateTime | No |
| modifiedById | String | No |
| modelName | String | No |
| recordId | String | No |
| operation | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| doneAt | DateTime | No |
| modifiedById | String | No |
| modelName | String | No |
| recordId | String | No |
| operation | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| numSeq | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| published | Int | Yes |
| isPublic | Int | Yes |
| isDeleted | Int | Yes |
| isDeletedDT | Int | Yes |
| isValidated | Int | Yes |
| emailToken | Int | Yes |
| timeStamp | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Float | No |
| isDeleted | Float | No |
| Name | Type | Nullable |
|---|---|---|
| numSeq | Int | No |
| isDeleted | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isValidated | Boolean | No |
| emailToken | String | No |
| timeStamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| numSeq | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| published | Boolean | No |
| isPublic | Boolean | No |
| isDeleted | Int | No |
| isDeletedDT | DateTime | No |
| isValidated | Boolean | No |
| emailToken | String | No |
| timeStamp | DateTime | No |